chenrui  2 years ago
parent
commit
c78a36804b

+ 0 - 2
src/views/securityCheck/components/securityCheckHeader.vue

@@ -270,7 +270,6 @@ export default {
     },
     "formData.beginDate": {
       handler(val, oldVal) {
-        console.log(val);
         if (oldVal) {
           this.search();
         }
@@ -278,7 +277,6 @@ export default {
     },
     "formData.endDate": {
       handler(val, oldVal) {
-        console.log(val);
         if (oldVal) {
           this.search();
         }

+ 49 - 20
src/views/securityCheck/views/cargoStatisticsHome.vue

@@ -483,7 +483,8 @@ export default {
         });
         this.dataall.data.forEach((element) => {
           element.proportion = element.value / counts;
-          element.proportion = element.proportion.toFixed(2) * 100 + "%";
+          element.proportion =
+            Math.floor(element.proportion.toFixed(2) * 100) + "%";
         });
         result.data.forEach((res) => {
           if (res.risk == "低风险") {
@@ -493,26 +494,32 @@ export default {
                 name: "移交",
                 value: res.yjNum,
                 prot:
-                  arr == 0 ? "0%" : (res.yjNum / arr.toFixed(2)) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.yjNum / arr.toFixed(2)) * 100) + "%",
               },
               {
                 name: "拒运",
                 value: res.jyNum,
                 prot:
-                  arr == 0 ? "0%" : (res.jyNum / arr.toFixed(2)) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.jyNum / arr.toFixed(2)) * 100) + "%",
               },
               {
                 name: "放行",
                 value: res.fxNum,
                 prot:
-                  arr == 0 ? "0%" : (res.fxNum / arr.toFixed(2)) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.fxNum / arr.toFixed(2)) * 100) + "%",
               },
             ];
             this.dataLow.color = ["#FAD153", "#DC5594", "#6161BD"];
             this.dataLow.num = res.num;
             this.dataLow.kxsNum = res.kxsNum;
             this.dataLow.proportion =
-              (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+              Math.floor((res.kxsNum / res.num).toFixed(2) * 100) + "%";
             this.dataLow.cont = arr;
           } else if (res.risk == "优先") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
@@ -521,26 +528,32 @@ export default {
                 name: "移交",
                 value: res.yjNum,
                 prot:
-                  arr == 0 ? "0%" : (res.yjNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.yjNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "拒运",
                 value: res.jyNum,
                 prot:
-                  arr == 0 ? "0%" : (res.jyNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.jyNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "放行",
                 value: res.fxNum,
                 prot:
-                  arr == 0 ? "0%" : (res.fxNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.fxNum / arr).toFixed(2) * 100) + "%",
               },
             ];
             this.dataLowcp.color = ["#FAD153", "#DC5594", "#6161BD"];
             this.dataLowcp.num = res.num;
             this.dataLowcp.kxsNum = res.kxsNum;
             this.dataLowcp.proportion =
-              (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+              Math.floor((res.kxsNum / res.num).toFixed(2) * 100) + "%";
             this.dataLowcp.cont = arr;
           } else if (res.risk == "普通") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
@@ -549,26 +562,32 @@ export default {
                 name: "移交",
                 value: res.yjNum,
                 prot:
-                  arr == 0 ? "0%" : (res.yjNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.yjNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "拒运",
                 value: res.jyNum,
                 prot:
-                  arr == 0 ? "0%" : (res.jyNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.jyNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "放行",
                 value: res.fxNum,
                 prot:
-                  arr == 0 ? "0%" : (res.fxNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.fxNum / arr).toFixed(2) * 100) + "%",
               },
             ];
             this.dataLowpt.color = ["#FAD153", "#DC5594", "#6161BD"];
             this.dataLowpt.num = res.num;
             this.dataLowpt.kxsNum = res.kxsNum;
             this.dataLowpt.proportion =
-              (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+              Math.floor((res.kxsNum / res.num).toFixed(2) * 100) + "%";
             this.dataLowpt.cont = arr;
           } else if (res.risk == "严控") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
@@ -577,26 +596,32 @@ export default {
                 name: "移交",
                 value: res.yjNum,
                 prot:
-                  arr == 0 ? "0%" : (res.yjNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.yjNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "拒运",
                 value: res.jyNum,
                 prot:
-                  arr == 0 ? "0%" : (res.jyNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.jyNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "放行",
                 value: res.fxNum,
                 prot:
-                  arr == 0 ? "0%" : (res.fxNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.fxNum / arr).toFixed(2) * 100) + "%",
               },
             ];
             this.dataLowyk.color = ["#FAD153", "#DC5594", "#6161BD"];
             this.dataLowyk.num = res.num;
             this.dataLowyk.kxsNum = res.kxsNum;
             this.dataLowyk.proportion =
-              (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+              Math.floor((res.kxsNum / res.num).toFixed(2) * 100) + "%";
             this.dataLowyk.cont = arr;
           } else if (res.risk == "高风险") {
             let arr = res.yjNum + res.jyNum + res.fxNum;
@@ -605,7 +630,9 @@ export default {
                 name: "移交",
                 value: res.yjNum,
                 prot:
-                  arr == 0 ? "0%" : (res.yjNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.yjNum / arr).toFixed(2) * 100) + "%",
               },
               {
                 name: "拒运",
@@ -619,14 +646,16 @@ export default {
                 name: "放行",
                 value: res.fxNum,
                 prot:
-                  arr == 0 ? "0%" : (res.fxNum / arr).toFixed(2) * 100 + "%",
+                  arr == 0
+                    ? "0%"
+                    : Math.floor((res.fxNum / arr).toFixed(2) * 100) + "%",
               },
             ];
             this.dataLowgf.color = ["#FAD153", "#DC5594", "#6161BD"];
             this.dataLowgf.num = res.num;
             this.dataLowgf.kxsNum = res.kxsNum;
             this.dataLowgf.proportion =
-              (res.kxsNum / res.num).toFixed(2) * 100 + "%";
+              Math.floor((res.kxsNum / res.num).toFixed(2) * 100) + "%";
             this.dataLowgf.cont = arr;
           }
         });