chenrui  1 жил өмнө
parent
commit
8fea1c76d0

+ 4 - 0
public/config.js

@@ -453,6 +453,10 @@ var DATACONTENT_ID = {
   modeLoadingweight: 51035, //加货重量统计
   modeSpecialgoods: 51037, //特货统计
   modeCargostatistics: 51048, //货量统计
+  modeCargostatistics1: 51071, //货量统计
+  modeCargostatistics2: 51072, //货量统计
+  modeCargostatistics3: 51073, //货量统计
+  modeCargostatistics4: 51074, //货量统计
   modePullgoods: 51038, //拉货统计
   modePulltable: 51039, //拉货统计表
   modeDomestictable: 51060, //国内进港保障时间统计

+ 48 - 9
src/views/statisticalanalysis/cargovolume/index.vue

@@ -69,6 +69,23 @@ export default {
       },
       titleTop: "货量统计",
       formItems: [
+        {
+          prop: "pt",
+          inputType: "select",
+          placeholder: "选择统计",
+          requiredWarning: "请先选择统计类型",
+          clearable: true,
+          options: [
+            {
+              value: "货量统计",
+              label: "货量统计",
+            },
+            {
+              value: "运单统计",
+              label: "运单统计",
+            },
+          ],
+        },
         {
           prop: "fttp",
           inputType: "select",
@@ -159,18 +176,40 @@ export default {
   destroyed() {},
   methods: {
     getFormData(data) {
+      console.log(data);
       this.tableData.time = [];
       this.tableData.data1 = [];
       this.tableData.data2 = [];
-      let option = [
-        {
-          fttp: data.fttp,
-          kht: data.kht,
-          td: data.td,
-          fd1: data.dateTime[0],
-          fd2: data.dateTime[1],
-        },
-      ];
+      if (data.pt === "运单统计" && data.fttp === "国内离港") {
+        this.listqueryTemplateID = DATACONTENT_ID.modeCargostatistics1;
+      } else if (data.pt === "运单统计" && data.fttp === "国内进港") {
+        this.listqueryTemplateID = DATACONTENT_ID.modeCargostatistics2;
+      } else if (data.pt === "运单统计" && data.fttp === "国际离港") {
+        this.listqueryTemplateID = DATACONTENT_ID.modeCargostatistics3;
+      } else if (data.pt === "运单统计" && data.fttp === "国际进港") {
+        this.listqueryTemplateID = DATACONTENT_ID.modeCargostatistics4;
+      }
+      let option = [];
+      if (data.pt === "运单统计") {
+        option = [
+          {
+            kht: data.kht,
+            td: data.td,
+            fd1: data.dateTime[0],
+            fd2: data.dateTime[1],
+          },
+        ];
+      } else {
+        option = [
+          {
+            fttp: data.fttp,
+            kht: data.kht,
+            td: data.td,
+            fd1: data.dateTime[0],
+            fd2: data.dateTime[1],
+          },
+        ];
+      }
       this.getQuery(option, null);
       this.listname =
         "货量统计" +