Browse Source

数据查询-航班视图跳转到运单视图修复

zhongxiaoyu 1 year ago
parent
commit
27148b174b

+ 5 - 6
public/extraConfig.js

@@ -86,18 +86,17 @@ var NODE_CODE = {
     { nodeName: '卸机', nodeCode: 'FFM' },
     { nodeName: '机下交接', nodeCode: 'CARGOS_HANDOVER_STATUS_01' },
     { nodeName: '货站交接', nodeCode: 'CARGOS_HANDOVER_STATUS_99' },
-    { nodeName: '理货', nodeCode: 'RCF报' },
-    // { nodeName: '快件运抵', nodeCode: '' },
+    { nodeName: '理货', nodeCode: 'RCF' },
     { nodeName: '海关放行', nodeCode: 'MTREL_in' },
-    { nodeName: '出库', nodeCode: 'DLV' },
+    { nodeName: '出库', nodeCode: 'DLV' },
   ],
   internationalDepartureTransfer: [
-    { nodeName: '入园', nodeCode: 'EPORTREL' },
-    { nodeName: '海关', nodeCode: 'MTREL_out' },
+    { nodeName: '入园', nodeCode: 'MTEXDEC' },
+    { nodeName: '海关', nodeCode: 'MTREL' },
     { nodeName: '运抵', nodeCode: 'FOH' },
     { nodeName: '安检', nodeCode: 'REH' },
     { nodeName: '收运核单', nodeCode: 'RCS' },
-    { nodeName: '理货', nodeCode: 'ACC_BUP' },
+    { nodeName: '理货', nodeCode: 'CARTON_LIST' },
     { nodeName: '实配', nodeCode: 'LS_CARGO' },
   ],
 }

+ 2 - 0
src/views/dataQuery/components/DataQueryView/index.vue

@@ -74,6 +74,7 @@
               :disabled="formData.inOrOut === 'out'"
               size="default"
               placeholder="始发站"
+              filterable
               clearable
             >
               <el-option
@@ -90,6 +91,7 @@
               :disabled="formData.inOrOut === 'in'"
               size="default"
               placeholder="目的站"
+              filterable
               clearable
             >
               <el-option

+ 11 - 5
src/views/realTime/hooks/useTableCellClick.ts

@@ -27,18 +27,24 @@ export function useTableCellClick(tableName?: string) {
 
     if (tableName?.includes('FlightWaybill')) {
       switch (column.property) {
-        case 'stockCode':
+        case 'stockCode': {
+          let path
+          if (route.path.includes('dataQuery')) {
+            path = route.path
+              .replace('flightQuery', 'waybillQuery')
+              .replace('Flight', 'Waybill')
+          } else {
+            path = `${route.path.split('/').slice(0, -1).join('/')}/waybill`
+          }
           router.push({
-            path: `${route.path.split('/').slice(0, -1).join('/')}/waybill`,
+            path,
             query: {
               flightDate: route.query.flightDate,
               waybillNO: row.stockCode,
             },
           })
           break
-        // case 'stowageNum':
-        //   ElMessage.info('开发中')
-        //   break
+        }
         default:
           break
       }