123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- <template>
- <div class="center">
- <div class="up">
- <div
- class="bg-color-black item"
- v-for="item in titleItem"
- :key="item.title"
- >
- <p class="ml-3 colorBlue fw-b">{{ item.title }}</p>
- <div>
- <dv-digital-flop class="dv-dig-flop ml-1 mt-1 pl-3" :config="item.config" />
- </div>
- </div>
- </div>
- <div class="down">
- <div class="ranking bg-color-black">
- <span>
- <i class="iconfont icon-tongji2"></i>
- </span>
- <span class="fs-xl text mx-2 mb-1">年度负责人组件达标榜</span>
- <dv-scroll-ranking-board class="dv-scr-rank-board" :config="ranking" />
- </div>
- <div class="percent">
- <div class="item bg-color-black">
- <span>今日任务通过率</span>
- <chart
- :tips="rate[0].tips"
- :colorObj="rate[0].colorData"
- />
- </div>
- <div class="item bg-color-black">
- <span>今日任务达标率</span>
- <chart
- :tips="rate[1].tips"
- :colorObj="rate[1].colorData"
- />
- </div>
- <div class="water">
- <dv-water-level-pond class="dv-wa-le-po" :config="water" />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { defineComponent, reactive, onMounted } from 'vue'
- import Chart from '../center/chart/draw'
- export default defineComponent({
- components: {
- Chart
- },
- setup() {
- // 下层数据
- const titleDate = [
- {
- number: 1020,
- text: '今年累计任务建次数'
- },
- {
- number: 18,
- text: '本月累计任务次数'
- },
- {
- number: 4,
- text: '今日累计任务次数'
- },
- {
- number: 71,
- text: '今年失败任务次数'
- },
- {
- number: 949,
- text: '今年失败成功次数'
- },
- {
- number: 811,
- text: '今年达标任务个数'
- },
- ]
- const titleItem = reactive([])
- // 初始化数据
- onMounted(() => {
- setData()
- })
- const ranking = reactive({
- data: [
- {
- name: '周口',
- value: 55
- },
- {
- name: '南阳',
- value: 120
- },
- {
- name: '西峡',
- value: 78
- },
- {
- name: '驻马店',
- value: 66
- },
- {
- name: '新乡',
- value: 80
- },
- {
- name: '新乡2',
- value: 80
- },
- {
- name: '新乡3',
- value: 80
- },
- {
- name: '新乡4',
- value: 80
- },
- {
- name: '新乡5',
- value: 80
- },
- {
- name: '新乡6',
- value: 80
- }
- ],
- carousel: 'single',
- unit: '人'
- })
- const water = reactive({
- data: [24, 45],
- shape: 'roundRect',
- formatter: '{value}%',
- waveNum: 3
- })
- const rate = reactive([
- {
- id: 'centerRate1',
- tips: 60,
- colorData: {
- textStyle: '#3fc0fb',
- series: {
- color: ['#00bcd44a', 'transparent'],
- dataColor: {
- normal: '#03a9f4',
- shadowColor: '#97e2f5'
- }
- }
- }
- },
- {
- id: 'centerRate2',
- tips: 40,
- colorData: {
- textStyle: '#67e0e3',
- series: {
- color: ['#faf3a378', 'transparent'],
- dataColor: {
- normal: '#ff9800',
- shadowColor: '#fcebad'
- }
- }
- }
- }
- ])
- // 设置数据
- const setData = () => {
- titleDate.map(e => {
- titleItem.push({
- title: e.text,
- config: {
- number: [e.number],
- toFixed: 1,
- textAlign: 'left',
- content: '{nt}',
- style: {
- fontSize: 26
- }
- }
- })
- })
- }
- return {
- titleItem,
- ranking,
- water,
- rate
- }
- }
- })
- </script>
- <style lang="scss" scoped>
- .center {
- display: flex;
- flex-direction: column;
- .up {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- .item {
- border-radius: 6px;
- padding-top: 8px;
- margin-top: 8px;
- width: 32%;
- height: 70px;
- .dv-dig-flop {
- width: 150px;
- height: 30px;
- }
- }
- }
- .down {
- padding: 6px 4px;
- padding-bottom: 0;
- width: 100%;
- display: flex;
- height: 255px;
- justify-content: space-between;
- .bg-color-black {
- border-radius: 5px;
- }
- .ranking {
- padding: 10px;
- width: 59%;
- .dv-scr-rank-board {
- height: 220px;
- }
- }
- .percent {
- width: 40%;
- display: flex;
- flex-wrap: wrap;
- .item {
- width: 50%;
- height: 120px;
- span {
- margin-top: 8px;
- font-size: 14px;
- display: flex;
- justify-content: center;
- }
- }
- .water {
- width: 100%;
- .dv-wa-le-po {
- height: 120px;
- }
- }
- }
- }
- }
- </style>
|