|
@@ -362,26 +362,10 @@ export default {
|
|
|
},
|
|
|
// 获取行李列表后设置快捷筛选
|
|
|
tableLoad (tableData) {
|
|
|
- const query = this.$route.query
|
|
|
- let tableKey = null
|
|
|
- Object.keys(query).forEach((key) => {
|
|
|
- const findKey = this.viewClassName.filter(item => item.value === key)
|
|
|
- if (findKey?.length) {
|
|
|
- tableKey = [...findKey]
|
|
|
- }
|
|
|
- })
|
|
|
- if (tableKey?.length) {
|
|
|
- this.fastFilterOptions = []
|
|
|
- this.fastFilterOptions = [...this.viewClassName].map(item => ({
|
|
|
- label: item.label,
|
|
|
- value: item.value
|
|
|
- }))
|
|
|
- }
|
|
|
- else {
|
|
|
- this.setFastFilterOptions(tableData)
|
|
|
- }
|
|
|
+ this.setFastFilterOptions(tableData)
|
|
|
},
|
|
|
setFastFilterOptions (tableData) {
|
|
|
+ const viewDatas = []
|
|
|
const inFlightNOList = new Set()
|
|
|
const transferFlightNOList = new Set()
|
|
|
tableData.forEach(item => {
|
|
@@ -408,6 +392,13 @@ export default {
|
|
|
}))
|
|
|
}
|
|
|
)
|
|
|
+ this.viewClassName.forEach(item => {
|
|
|
+ viewDatas.push({
|
|
|
+ label: item.label,
|
|
|
+ value: item.value
|
|
|
+ })
|
|
|
+ })
|
|
|
+ this.fastFilterOptions = this.fastFilterOptions.concat(viewDatas)
|
|
|
}
|
|
|
}
|
|
|
}
|