Browse Source

图单位

CzRger 3 months ago
parent
commit
8e4d361355

+ 2 - 1
snowy-admin-web/src/views/gsc/pass-statistic/chart/bar.vue

@@ -32,7 +32,8 @@ const initChart = () => {
 	  top: '10%',
 	},
     tooltip: {
-      trigger: 'axis'
+      trigger: 'axis',
+	  formatter: '{b} {c}min'
     },
     xAxis: {
       type: 'category',

+ 4 - 2
snowy-admin-web/src/views/gsc/pass-statistic/chart/line.vue

@@ -10,7 +10,8 @@ import * as echarts from 'echarts';
 
 const props = defineProps({
   data: {},
-  color: {}
+  color: {},
+  unit: {}
 })
 
 const {proxy} = getCurrentInstance()
@@ -32,7 +33,8 @@ const initChart = () => {
 	  top: '10%',
 	},
     tooltip: {
-      trigger: 'axis'
+      trigger: 'axis',
+	  formatter: `{b}${props.unit} {c}人`
     },
     xAxis: {
       type: 'category',

+ 3 - 3
snowy-admin-web/src/views/gsc/pass-statistic/chart/pie.vue

@@ -28,7 +28,8 @@ const initChart = () => {
   const option = {
     color: props.color,
     tooltip: {
-      trigger: 'item'
+      trigger: 'item',
+	  formatter: '{b} {d}%'
     },
     legend: {
       orient: 'vertical',
@@ -54,10 +55,9 @@ const initChart = () => {
           formatter: (p) => {
             let str = ''
             str += p.name + '\n'
-            str += p.value + '人' + '\n'
+            // str += p.value + '人' + '\n'
             str += p.percent + '%'
             return str
-            console.log(p)
           }
         },
         labelLine: {

+ 2 - 2
snowy-admin-web/src/views/gsc/pass-statistic/index.vue

@@ -40,7 +40,7 @@
           <a-date-picker v-model:value="state.date2"/>
         </div>
         <div class="content">
-          <lineChart :data="state.arr2" :color="state.color2"/>
+          <lineChart :data="state.arr2" :color="state.color2" unit="时"/>
         </div>
       </div>
       <div class="statistic-block">
@@ -48,7 +48,7 @@
           <a-date-picker v-model:value="state.date3" picker="month"/>
         </div>
 		<div class="content">
-			<lineChart :data="state.arr3" :color="state.color3"/>
+			<lineChart :data="state.arr3" :color="state.color3" unit="日"/>
 		</div>
       </div>
     </div>