Parcourir la source

航站视图优化

zhongxiaoyu il y a 1 an
Parent
commit
570a03000a
2 fichiers modifiés avec 6 ajouts et 3 suppressions
  1. 1 0
      public/extraConfig.js
  2. 5 3
      src/views/realTime/components/AirportView/index.vue

+ 1 - 0
public/extraConfig.js

@@ -28,6 +28,7 @@ var NODE_CODE = {
     { nodeName: '收运核单', nodeCode: 'RCS' },
     { nodeName: '海关放行', nodeCode: 'MTREL_in' },
     { nodeName: '海关放行', nodeCode: 'MTREL' },
+    { nodeName: '出库', nodeCode: 'EIMS_Y02' },
     { nodeName: '出库', nodeCode: 'DLV' },
     { nodeName: '理货', nodeCode: 'RCF报' },
     { nodeName: '理货', nodeCode: 'CARTON_LIST' },

+ 5 - 3
src/views/realTime/components/AirportView/index.vue

@@ -201,9 +201,11 @@ const summaryMethod: SummaryMethod<CommonData> = ({ columns, data }) => {
         //     sumArr.splice(countIndex, 1)
         //   }
         // }
-        const countIndex = tableColumnsCountIndexMap[column.property]
-        if (countIndex) {
-          sumArr.splice(countIndex, 1)
+        if (!countFlag.value) {
+          const countIndex = tableColumnsCountIndexMap[column.property]
+          if (countIndex) {
+            sumArr.splice(countIndex, 1)
+          }
         }
         sums[index] = sumArr.join('/')
       } else {