Forráskód Böngészése

Merge remote-tracking branch 'origin/master'

ZaiZai 2 éve
szülő
commit
aa64963944

+ 4 - 1
src/views/using/components/echarts/ArrRoundChart.vue

@@ -88,7 +88,10 @@ const setOptions = (AxisData) => {
                         fontWeight: 'bold'
                     }
                 },
-                data: AxisData
+                data: AxisData,
+                label:{
+                    formatter: '{b}\ {c}',
+                }
             }
         ]
     })

+ 4 - 0
src/views/using/components/echarts/RoundPieChart.vue

@@ -50,6 +50,7 @@ const setOptions = (AxisData) => {
         tooltip: {
             trigger: 'item'
         },
+        color: ['#5279AE','#F5CC71','#B8595A','#67B57E'],
         series: [
             {
                 type: 'pie',
@@ -62,6 +63,9 @@ const setOptions = (AxisData) => {
                         shadowOffsetX: 0,
                         shadowColor: 'rgba(0, 0, 0, 0.4)'
                     }
+                },
+                label:{
+                    formatter: '{b}\ {c}',
                 }
             }
         ]

+ 1 - 1
src/views/using/query.vue

@@ -48,7 +48,7 @@
                     <el-collapse-item name="show">
                         <div class="hc-search-hot-key">
                             <span>热门搜索词汇:</span>
-                            <span class="text-hover ml-4"  v-for="item in hotInputlist" @click="clickHottitle(item)">{{ item.name }}</span>
+                            <span class=" ml-4"  v-for="item in hotInputlist" @click="clickHottitle(item)">{{ item.name }}</span>
                         </div>
                         <div class="hc-search-screening-item">
                             <div class="title">类别:</div>

+ 4 - 4
src/views/using/stats.vue

@@ -39,7 +39,7 @@
                             <HcBorderNeon align="left"/>
                             <div class="header">档案年限占比</div>
                             <div class="body" v-loading="isFixedLoading">
-                                <RoundPieChart ref="fixedChartRef" :datas="fixedChartData"/>
+                                <RoundPieChart ref="fixedChartRef" :datas="fixedChartData"  />
                             </div>
                         </div>
                         <div class="hc-chart-card-box gird">
@@ -105,7 +105,7 @@ const nativeChartRef = ref(null)
 const nativeChartConfig = {
     name: ['原生', '数字化'],
     key: ['key1', 'key2'],
-    color: ['#3187FF', '#1ACC96'],
+    color: ['#D97558', '#E4C377'],
     label: '',
 }
 
@@ -134,7 +134,7 @@ const hasBeenChartRef = ref(null)
 const hasBeenChartConfig = {
     name: ['施工', '监理', '业主'],
     key: ['key1', 'key2', 'key3'],
-    color: ['#3187FF', '#FF8F3E', '#1ACC96'],
+    color: ['#D9A67B', '#D97558', '#E4C377'],
     label: '已组案卷',
 }
 
@@ -186,7 +186,7 @@ const destroyChartRef = ref(null)
 const destroyChartConfig = {
     name: ['施工', '监理', '业主'],
     key: ['key1', 'key2', 'key3'],
-    color: ['#87ace2', '#6eb1ff', '#0e7ce5'],
+    color: ['#63686E', '#42494F', '#999FA6'],
     label: '已销毁案卷',
 }