chenrui  2 tahun lalu
induk
melakukan
b895416244

+ 2 - 2
src/utils/app-ecahrts.js

@@ -110,9 +110,9 @@ export const pillar = {
       ]
     },
     {
-      name: '访问来源',
+      name: '总数',
       type: 'pie',
-      silent: 'ture',
+      // silent: 'ture',
       radius: ['0%', '50%'],
       avoidLabelOverlap: false,
       itemStyle: {

+ 1 - 0
src/views/securityCheck/components/graphicHome.vue

@@ -39,6 +39,7 @@ export default {
       pillar.title.subtext = this.texter.cont;
       pillar.title.top = this.texter.top;
       pillar.series[0].color = this.texter.color;
+      pillar.series[1].data = [this.texter.cont];
       myChart.clear();
       myChart.setOption(pillar, true);
       window.onresize = () => {

+ 11 - 1
src/views/securityCheck/components/securityCheckHeader.vue

@@ -172,7 +172,7 @@ export default {
   data() {
     return {
       changeButtonLoading: false,
-      optionLists: ["低风险", "优先", "普通", "高风险", "严控"],
+      optionLists: ["", "低风险", "优先", "普通", "高风险", "严控"],
       formData: {
         beginDate: "",
         endDate: "",
@@ -239,6 +239,16 @@ export default {
         this.search();
       },
     },
+    "formData.beginDate": {
+      handler(val) {
+        this.search();
+      },
+    },
+    "formData.endDate": {
+      handler(val) {
+        this.search();
+      },
+    },
     selectOptions: {
       handler(val) {
         if (val.length) {

+ 5 - 2
src/views/securityCheck/views/cargoStatisticsHome.vue

@@ -496,6 +496,7 @@ export default {
             this.dataLow.kxsNum = res.kxsNum;
             this.dataLow.proportion =
               (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+            this.dataLow.cont = arr;
           } else if (res.risk == "优先") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
             this.dataLowcp.data = [
@@ -523,6 +524,7 @@ export default {
             this.dataLowcp.kxsNum = res.kxsNum;
             this.dataLowcp.proportion =
               (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+            this.dataLowcp.cont = arr;
           } else if (res.risk == "普通") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
             this.dataLowpt.data = [
@@ -550,6 +552,7 @@ export default {
             this.dataLowpt.kxsNum = res.kxsNum;
             this.dataLowpt.proportion =
               (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+            this.dataLowpt.cont = arr;
           } else if (res.risk == "严控") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
             this.dataLowyk.data = [
@@ -577,6 +580,7 @@ export default {
             this.dataLowyk.kxsNum = res.kxsNum;
             this.dataLowyk.proportion =
               (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+            this.dataLowyk.cont = arr;
           } else if (res.risk == "高风险") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
             this.dataLowgf.data = [
@@ -606,10 +610,9 @@ export default {
             this.dataLowgf.kxsNum = res.kxsNum;
             this.dataLowgf.proportion =
               (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+            this.dataLowgf.cont = arr;
           }
         });
-        console.log(result.data, "11");
-        console.log(this.dataLowgf.data, "222");
         this.$refs.chart.init();
       } catch (error) {
         console.log(error);