|
@@ -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
|