|
@@ -151,7 +151,7 @@ export default {
|
|
}
|
|
}
|
|
return classes
|
|
return classes
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
tagObj: {
|
|
tagObj: {
|
|
@@ -189,7 +189,7 @@ export default {
|
|
returnData.forEach(item => {
|
|
returnData.forEach(item => {
|
|
item.bagStatus = _.cloneDeep(this.stepNodes)
|
|
item.bagStatus = _.cloneDeep(this.stepNodes)
|
|
})
|
|
})
|
|
- this.tableDataCopy.push(...returnData);
|
|
|
|
|
|
+ this.tableDataCopy.push(...returnData)
|
|
//this.tableDataCopy = _.uniqBy(this.tableDataCopy, 'carrierFlights')
|
|
//this.tableDataCopy = _.uniqBy(this.tableDataCopy, 'carrierFlights')
|
|
// this.tableDataCopy = this.tableDataCopy.sort((a, b) => Date.parse(a.carrierFlightsDate) - Date.parse(b.carrierFlightsDate))
|
|
// this.tableDataCopy = this.tableDataCopy.sort((a, b) => Date.parse(a.carrierFlightsDate) - Date.parse(b.carrierFlightsDate))
|
|
this.tableDataCopy.forEach(item => {
|
|
this.tableDataCopy.forEach(item => {
|
|
@@ -203,17 +203,24 @@ export default {
|
|
})
|
|
})
|
|
})
|
|
})
|
|
this.getBagTime(this.tableDataCopy)
|
|
this.getBagTime(this.tableDataCopy)
|
|
- this.loading = false;
|
|
|
|
|
|
+ this.loading = false
|
|
} else {
|
|
} else {
|
|
- this.page--;
|
|
|
|
- this.loading = false;
|
|
|
|
- this.$message.error("获取表格数据失败");
|
|
|
|
|
|
+ this.page--
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.$message.error("获取表格数据失败")
|
|
}
|
|
}
|
|
} catch (error) {
|
|
} catch (error) {
|
|
this.loading = false;
|
|
this.loading = false;
|
|
console.log(error)
|
|
console.log(error)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ statusSecurity (item) {
|
|
|
|
+ const { securityInspectionResults, security_location } = item
|
|
|
|
+ const securityNums = ['XSA001', 'XSA003', 'XSB001', 'XSB004']
|
|
|
|
+ if (securityInspectionResults == 'CLR') return securityInspectionResults
|
|
|
|
+ else if (securityNums.includes(security_location)) return 'ULR'
|
|
|
|
+ else return ''
|
|
|
|
+ },
|
|
restTable () {
|
|
restTable () {
|
|
this.loading = false
|
|
this.loading = false
|
|
this.noMore = false
|
|
this.noMore = false
|
|
@@ -232,7 +239,11 @@ export default {
|
|
const newArr = [...arr]
|
|
const newArr = [...arr]
|
|
const reqUrls = []
|
|
const reqUrls = []
|
|
newArr.forEach(item => {
|
|
newArr.forEach(item => {
|
|
- const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = item
|
|
|
|
|
|
+ const { carrierFlights, carrierFlightsDate, outAirport, landAirport, bagStatus } = item
|
|
|
|
+ const index = bagStatus.findIndex(citem => citem.stateProp == 'securityInspectionResults')
|
|
|
|
+ if (index > -1) {
|
|
|
|
+ bagStatus[index]['stateValue'] = this.statusSecurity(item)
|
|
|
|
+ }
|
|
const reqItem = this.getQueryList(SERVICE_ID.baggageTime, {
|
|
const reqItem = this.getQueryList(SERVICE_ID.baggageTime, {
|
|
carrierFlights,
|
|
carrierFlights,
|
|
carrierFlightsDate,
|
|
carrierFlightsDate,
|