|
@@ -203,8 +203,29 @@ export default {
|
|
|
this.getLuggageInfo(this.tableDatas5Id)
|
|
|
},
|
|
|
tabClick (item, index) {
|
|
|
- this.tabIndex = index
|
|
|
- this.componentName = item.key
|
|
|
+ if (item.key == 'baggageList' || item.key == 'baggageMessage') {
|
|
|
+ let parmObj = null
|
|
|
+ const { carrierFlights, carrierFlightsDate, luggageNum } = this.query
|
|
|
+ if (this.PNRNO) {
|
|
|
+ parmObj = {
|
|
|
+ PNRNO: this.PNRNO,
|
|
|
+ passengerName: this.passengerName,
|
|
|
+ luggageNum
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ parmObj = {
|
|
|
+ carrierFlightsDate,
|
|
|
+ carrierFlights,
|
|
|
+ luggageNum
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.tagObj = parmObj
|
|
|
+ console.log(this.tagObj)
|
|
|
+ }
|
|
|
+ setTimeout(() => {
|
|
|
+ this.tabIndex = index
|
|
|
+ this.componentName = item.key
|
|
|
+ }, 10);
|
|
|
}
|
|
|
}
|
|
|
}
|