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

数据大屏增加金额字段

lucky 2 éve
szülő
commit
3eb6bf96aa
1 módosított fájl, 19 hozzáadás és 19 törlés
  1. 19 19
      src/components/echart/bottom/bottomRightChart/chart.vue

+ 19 - 19
src/components/echart/bottom/bottomRightChart/chart.vue

@@ -40,7 +40,7 @@ export default {
           tooltip: {},
           dataset: {
             source: [
-              ["product",  "本月完成率" ],
+              ["product",  "本月完成率" ,"本月完成金额"],
               
             ],
           },
@@ -64,24 +64,24 @@ export default {
                 },
               },
             },
-            // {
-            //   type: "bar",
-            //   barWidth:40,
-            //   label: {
-            //     show: true,
-            //     color: "#fff", 
-            //     position: 'top',
-            //     formatter: function (params) {
-            //       return params.value[2]+"元"
-            //     }
-            //   },
-            //   itemStyle: {
-            //     normal: { 
-            //       color: "#28ffcd", 
+            {
+              type: "bar",
+              barWidth:40,
+              label: {
+                show: true,
+                color: "#fff", 
+                position: 'top',
+                formatter: function (params) {
+                  return params.value[2]+"元"
+                }
+              },
+              itemStyle: {
+                normal: { 
+                  color: "#28ffcd", 
 
-            //     },
-            //   },
-            // },
+                },
+              },
+            },
             // {
             //   type: "bar",
             //   barWidth:40,
@@ -131,7 +131,7 @@ export default {
       this.total_finish_rate = res.data.total_finish_rate +"%"
   
       res.data.list.forEach((item,index) => {
-        this.$set(this.options.dataset.source, index+1, [item.department,Number(item.finish_rate).toFixed(2) ,item.total_tips])
+        this.$set(this.options.dataset.source, index+1, [item.department,Number(item.finish_rate).toFixed(2) ,Number(item.finish).toFixed(2)])
         
       });
       // console.log(this.options.dataset.source)