Przeglądaj źródła

运单跟踪节点修改

zhongxiaoyu 2 lat temu
rodzic
commit
efbc462d99

+ 3 - 3
src/views/realTime/components/WaybillView/index.vue

@@ -158,9 +158,9 @@ const tableData = computed(() =>
       execResult,
       execTime,
     } = current
-    const nodeValue = `${execPosition ?? ''}\n${execResult ?? ''}\n${
-      execTime ?? ''
-    }`
+    const nodeValue = `${execPosition ?? ''}\n${
+      execResult ? '通过' : '未通过'
+    }\n${execTime ?? ''}`
     if (sameRow) {
       sameRow[String(nodeCode)] = nodeValue
     } else {

+ 2 - 2
src/views/realTime/hooks/useTrackData.ts

@@ -128,7 +128,7 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
           'DEH',
           'ACC_CHECK',
           '安检',
-          'ACC_BUP',
+          'LS_CARGO',
           'WAT_LOC',
           'CARGOS_DEP_ULD_HANDOVER',
           '出港货邮',
@@ -150,7 +150,7 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
           descriptions: [
             String(execPosition ?? ''),
             String(ConsignmentItemPackagingQuantityQuantity ?? ''),
-            String(execResult ?? ''),
+            execResult ? '通过' : '未通过',
             String(execTime ?? '').split('T')[1] ?? '',
           ],
         }