瀏覽代碼

行李视图查询模板ID修改

zhongxiaoyu 1 年之前
父節點
當前提交
bb2a3436d5
共有 2 個文件被更改,包括 12 次插入6 次删除
  1. 4 1
      public/config.js
  2. 8 5
      src/views/baggageManagementTemp/components/baggage/index.vue

+ 4 - 1
public/config.js

@@ -58,10 +58,13 @@ window.SERVICE_ID = {
 
   /***-----行李视图------***/
   baggageBasicInfo: 255, // 行李-基础信息
-  baggageAirline: 18009, // 行李-航段
   baggageTrack: 18010, // 行李-追踪节点
+  baggageAirline: 18009, // 行李-航段
   baggageDetails: 44, // 行李-详情列表
   baggageMessage: 3066, // 行李-原始报文
+  baggageAirlineNew: 18008, // 行李-航段
+  baggageDetailsNew: 441, // 行李-详情列表
+  baggageMessageNew: 3068, // 行李-原始报文
 
   /***-----容器视图------***/
   containerHistory: 18026,

+ 8 - 5
src/views/baggageManagementTemp/components/baggage/index.vue

@@ -359,12 +359,12 @@ export default {
       this.startQueryTrack()
     }
   },
-  created () {
+  async created () {
     this.resetStepNodes()
     const { flightNO, flightDate, bagSN } = this.$route.query
     if (flightNO && flightDate && bagSN) {
       this.queryData = { flightNO, flightDate, bagSN }
-      this.queryBasicInfo()
+      await this.queryBasicInfo()
       this.queryAirline()
       this.infoBtn = this.infoRadios[0]
     } else {
@@ -645,7 +645,8 @@ export default {
     },
     // 行李航段
     queryBaggageAirline (dataContent) {
-      return myQuery(SERVICE_ID.baggageAirline, ...dataContent)
+      const id = this.baggageBasicInfo.PNR ? SERVICE_ID.baggageAirline : SERVICE_ID.baggageAirlineNew
+      return myQuery(id, ...dataContent)
     },
     // 行李详情追踪链
     queryBaggageTrack (dataContent) {
@@ -653,13 +654,15 @@ export default {
     },
     // 行李详情表格
     queryBaggageDetails (dataContent) {
-      return myQuery(SERVICE_ID.baggageDetails, ...dataContent)
+      const id = this.baggageBasicInfo.PNR ? SERVICE_ID.baggageDetails : SERVICE_ID.baggageDetailsNew
+      return myQuery(id, ...dataContent)
     },
     // 原始报文
     async queryBaggageMessage (dataContent) {
       try {
+        const id = this.baggageBasicInfo.PNR ? SERVICE_ID.baggageMessage : SERVICE_ID.baggageMessageNew
         const { code, returnData, message } = await BaggageMessageQuery({
-          id: SERVICE_ID.baggageMessage,
+          id,
           dataContent
         })
         if (Number(code) === 0) {