Эх сурвалжийг харах

修改行李列表请求参数

zhaoke 1 жил өмнө
parent
commit
944ffb91a5

+ 13 - 2
src/views/newBagDetails/index.vue

@@ -196,6 +196,7 @@ export default {
     },
     tagClick (item, index) {
       const { luggageNum, carrierFlights, carrierFlightsDate, PNRNO, passengerName } = item
+      this.PNRNO = PNRNO
       this.checkObj = PNRNO ? {
         PNRNO,
         passengerName,
@@ -214,13 +215,23 @@ export default {
       this.activeIndex = index
       this.getLuggageInfo(this.tableDatas5Id, true)
       if (this.tabClickKey && this.tabClickKey != 'baggageView') {
-        this.tagObj = Object.assign(this.tabClickObj, { PNRNO: null })
+        if (this.PNRNO) {
+          if (this.tabClickObj.carrierFlights) {
+            delete this.tabClickObj.carrierFlights
+          }
+        }
+        this.tagObj = Object.assign(this.tabClickObj, { PNRNO: this.PNRNO ? this.PNRNO : null })
       }
     },
     tabClick (item, index) {
       this.tabClickKey = item.key
       if (item.key == 'baggageList' || item.key == 'baggageMessage') {
-        this.tagObj = Object.assign(this.tabClickObj, { PNRNO: null })
+        if (this.PNRNO) {
+          if (this.tabClickObj.carrierFlights) {
+            delete this.tabClickObj.carrierFlights
+          }
+        }
+        this.tagObj = Object.assign(this.tabClickObj, { PNRNO: this.PNRNO ? this.PNRNO : null })
       }
       setTimeout(() => {
         this.tabIndex = index