|
@@ -174,6 +174,18 @@ export default {
|
|
|
console.log(error)
|
|
|
}
|
|
|
},
|
|
|
+ //设置行李信息弹框
|
|
|
+ setBagInfo () {
|
|
|
+ const bagColsMap = JSON.parse(localStorage.getItem('bagColsMap')) || {}
|
|
|
+ this.tableCols = [...this.orderColData([...this.msgs1]), ...this.hideData([...this.msgs1])]
|
|
|
+ if (!Object.keys(bagColsMap).length) {
|
|
|
+ this.tableColsCopy = this.orderColData([...this.msgs1])
|
|
|
+ this.checkedKeysTemp = this.orderColData([...this.msgs1]).map(item => item.queryTemplateColumnSetID)
|
|
|
+ } else {
|
|
|
+ this.tableColsCopy = [...bagColsMap.bagColsLists]
|
|
|
+ this.checkedKeysTemp = [...bagColsMap.bagColsKeys]
|
|
|
+ }
|
|
|
+ },
|
|
|
//获取行李信息
|
|
|
async getLuggageInfo (auth_id, checkParams) {
|
|
|
try {
|
|
@@ -191,9 +203,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
- this.tableCols = [...this.orderColData([...this.msgs1]), ...this.hideData([...this.msgs1])]
|
|
|
- this.tableColsCopy = this.orderColData([...this.msgs1])
|
|
|
- this.checkedKeysTemp = this.orderColData([...this.msgs1]).map(item => item.queryTemplateColumnSetID)
|
|
|
+ this.setBagInfo()
|
|
|
if (!checkParams) {
|
|
|
this.getLuggageNums()
|
|
|
}
|