|
@@ -42,7 +42,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newBagDetails-contents-page">
|
|
|
- <component ref="dataChild" :queryItem="queryItem" :tableDatas="tableDatas" :is="componentName"></component>
|
|
|
+ <component ref="dataChild" :queryParams="queryObj" :queryItem="queryItem" :tableDatas="tableDatas" :is="componentName"></component>
|
|
|
</div>
|
|
|
</div>
|
|
|
<Dialog :flag="imgFlag" width="600px" class="dialog-check-img">
|
|
@@ -174,7 +174,7 @@ export default {
|
|
|
sessionStorage.setItem(key, JSON.stringify(data))
|
|
|
},
|
|
|
//获取表头数据
|
|
|
- async queryTableData (serviceid, dataParmas) {
|
|
|
+ async queryTableData (serviceid, dataParmas, Jump = false) {
|
|
|
this.loading = true
|
|
|
try {
|
|
|
const datacontent = { filter: formatBagParmas(dataParmas) }
|
|
@@ -189,11 +189,11 @@ export default {
|
|
|
if (code == 0) {
|
|
|
if (returnData?.length) {
|
|
|
const ndata = []
|
|
|
+ const nItem = { ...this.query }
|
|
|
const bagInfo = [...returnData][0]
|
|
|
this.passengerName = bagInfo['passengerName'] || ''
|
|
|
this.PNRNO = bagInfo['PNRNO'] || ''
|
|
|
- this.queryObj = { ...this.query }
|
|
|
- this.queryObj['PNRNO'] = bagInfo['PNRNO'] || ''
|
|
|
+ nItem['PNRNO'] = bagInfo['PNRNO'] || ''
|
|
|
const bagInfoArr = Object.entries(bagInfo)
|
|
|
this.tableCols.map(({ pagecode, pagename }) => {
|
|
|
bagInfoArr.map(item => {
|
|
@@ -208,7 +208,8 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
this.msgs1 = [...ndata]
|
|
|
- this.setTableLocalData('bagQueryParams', this.queryObj)
|
|
|
+ this.queryObj = { ...nItem }
|
|
|
+ if (!Jump) this.setTableLocalData('bagQueryParams', this.queryObj)
|
|
|
this.getLuggageNums()
|
|
|
this.loading = false
|
|
|
} else {
|
|
@@ -265,7 +266,7 @@ export default {
|
|
|
this.activeIndex = index
|
|
|
this.setTableLocalData('bagQueryParams', this.tagObj)
|
|
|
this.queryItem = Math.random()
|
|
|
- this.queryTableData(115, this.tagObj)
|
|
|
+ this.queryTableData(115, this.tagObj, true)
|
|
|
},
|
|
|
tabClick (item, index) {
|
|
|
this.tabIndex = index
|