|
@@ -37,6 +37,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { Query } from '@/api/webApi'
|
|
|
+import { formatBagParmas } from '@/utils/validate'
|
|
|
export default {
|
|
|
name: 'BaggageView',
|
|
|
props: ['queryItem'],
|
|
@@ -46,11 +47,11 @@ export default {
|
|
|
{
|
|
|
nodeCode: 'CHECKIN',
|
|
|
nodeName: '值机',
|
|
|
- timeProp: 'checkInDate',
|
|
|
+ timeProp: 'checkindate',
|
|
|
timeValue: '',
|
|
|
- loclProp: 'checkInLocation',
|
|
|
+ loclProp: 'checkinlocation',
|
|
|
loclValue: '',
|
|
|
- stateProp: 'checkState',
|
|
|
+ stateProp: 'checkstate',
|
|
|
stateValue: '',
|
|
|
},
|
|
|
{
|
|
@@ -60,7 +61,7 @@ export default {
|
|
|
timeValue: '',
|
|
|
loclProp: 'security_location',
|
|
|
loclValue: '',
|
|
|
- stateProp: 'securityInspectionResults',
|
|
|
+ stateProp: 'securityinspectionresults',
|
|
|
stateValue: '',
|
|
|
},
|
|
|
{
|
|
@@ -70,7 +71,7 @@ export default {
|
|
|
timeValue: '',
|
|
|
loclProp: 'sorting_location',
|
|
|
loclValue: '',
|
|
|
- stateProp: 'sortState',
|
|
|
+ stateProp: 'sortstate',
|
|
|
stateValue: '',
|
|
|
},
|
|
|
{
|
|
@@ -78,9 +79,9 @@ export default {
|
|
|
nodeName: '装车',
|
|
|
timeProp: 'loading_time',
|
|
|
timeValue: '',
|
|
|
- loclProp: 'installationAddress',
|
|
|
+ loclProp: 'installationaddress',
|
|
|
loclValue: '',
|
|
|
- stateProp: 'loadState',
|
|
|
+ stateProp: 'loadstate',
|
|
|
stateValue: '',
|
|
|
},
|
|
|
{
|
|
@@ -108,7 +109,7 @@ export default {
|
|
|
nodeName: '到达',
|
|
|
timeProp: 'arrivedtime',
|
|
|
timeValue: '',
|
|
|
- loclProp: 'arrviedLocation',
|
|
|
+ loclProp: 'arrviedlocation',
|
|
|
loclValue: '',
|
|
|
stateProp: 'normal',
|
|
|
stateValue: '',
|
|
@@ -166,7 +167,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//获取行李信息
|
|
|
- async getLuggageList (serviceid = 116, datacontent = { filter: this.dataContent }, page = ++this.page, size = this.pageSize) {
|
|
|
+ async getLuggageList (serviceid = 116, datacontent = { filter: formatBagParmas(this.dataContent) }, page = ++this.page, size = this.pageSize) {
|
|
|
try {
|
|
|
this.loading = true
|
|
|
const parmas = {
|
|
@@ -189,17 +190,7 @@ export default {
|
|
|
this.tableDataCopy.push(...returnData)
|
|
|
this.tableDataCopy = _.uniqBy(this.tableDataCopy, 'carrierFlights')
|
|
|
this.tableDataCopy = this.tableDataCopy.sort((a, b) => Date.parse(a.carrierFlightsDate) - Date.parse(b.carrierFlightsDate))
|
|
|
- this.tableDataCopy.forEach(item => {
|
|
|
- item.bagStatus.map(p => {
|
|
|
- const { timeProp, loclProp, stateProp } = p
|
|
|
- if (item.hasOwnProperty(timeProp) || item.hasOwnProperty(loclProp) || item.hasOwnProperty(stateProp)) {
|
|
|
- p.timeValue = item[timeProp]
|
|
|
- p.loclValue = item[loclProp]
|
|
|
- p.stateValue = item[stateProp]
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- this.getBagTime(this.tableDataCopy)
|
|
|
+ this.setBagTime(this.tableDataCopy)
|
|
|
this.loading = false
|
|
|
} else {
|
|
|
this.page--;
|
|
@@ -223,21 +214,35 @@ export default {
|
|
|
}
|
|
|
this.getLuggageList()
|
|
|
},
|
|
|
+ setBagTime (arr) {
|
|
|
+ const bagTimes = [...arr]
|
|
|
+ if (!bagTimes.length) return
|
|
|
+ bagTimes.map(item => {
|
|
|
+ const newObj = {}
|
|
|
+ const { actualTakeOffTime, estimateTakeOffTime, scheduleTakeOffTime, actualLandInTime, estimateLandInTime, scheduleLandInTime } = item
|
|
|
+ newObj.newTakeoff_time = actualTakeOffTime ? actualTakeOffTime : estimateTakeOffTime ? estimateTakeOffTime : scheduleTakeOffTime
|
|
|
+ newObj.newLand_time = actualLandInTime ? actualLandInTime : estimateLandInTime ? estimateLandInTime : scheduleLandInTime
|
|
|
+ newObj.takeTime = newObj.newTakeoff_time ? newObj.newTakeoff_time.split('T').at(-1) : newObj.newTakeoff_time
|
|
|
+ newObj.landTime = newObj.newLand_time ? newObj.newLand_time.split('T').at(-1) : newObj.newLand_time
|
|
|
+ item = _.assign(item, newObj)
|
|
|
+ })
|
|
|
+ this.getBagTime(bagTimes)
|
|
|
+ },
|
|
|
async getBagTime (arr) {
|
|
|
const newArr = [...arr]
|
|
|
const reqUrls = []
|
|
|
newArr.forEach(item => {
|
|
|
- const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = item
|
|
|
+ const { carrierFlights = null, carrierFlightsDate = null, luggageNum = null, PNRNO = null } = item
|
|
|
const parmas = {
|
|
|
page: 1,
|
|
|
serviceid: 117,
|
|
|
datacontent: {
|
|
|
- filter: {
|
|
|
+ filter: formatBagParmas({
|
|
|
carrierFlights,
|
|
|
carrierFlightsDate,
|
|
|
- outAirport,
|
|
|
- landAirport
|
|
|
- }
|
|
|
+ luggageNum,
|
|
|
+ PNRNO
|
|
|
+ })
|
|
|
},
|
|
|
size: 9999,
|
|
|
event: '0'
|
|
@@ -253,13 +258,15 @@ export default {
|
|
|
const newArray = [...returnData]
|
|
|
if (newArray?.length) {
|
|
|
const itemObj = newArray[0]
|
|
|
- const newObj = {}
|
|
|
- const { actualTakeOffTime, estimateTakeOffTime, scheduleTakeOffTime, actualLandInTime, estimateLandInTime, scheduleLandInTime } = itemObj
|
|
|
- newObj.newTakeoff_time = actualTakeOffTime ? actualTakeOffTime : estimateTakeOffTime ? estimateTakeOffTime : scheduleTakeOffTime
|
|
|
- newObj.newLand_time = actualLandInTime ? actualLandInTime : estimateLandInTime ? estimateLandInTime : scheduleLandInTime
|
|
|
- newObj.takeTime = newObj.newTakeoff_time ? newObj.newTakeoff_time.split('T').at(-1) : newObj.newTakeoff_time
|
|
|
- newObj.landTime = newObj.newLand_time ? newObj.newLand_time.split('T').at(-1) : newObj.newLand_time
|
|
|
- newArr[index] = Object.assign(newArr[index], newObj)
|
|
|
+ const { bagStatus } = newArr[index]
|
|
|
+ bagStatus.map(p => {
|
|
|
+ const { timeProp, loclProp, stateProp } = p
|
|
|
+ if (itemObj.hasOwnProperty(timeProp) || itemObj.hasOwnProperty(loclProp) || itemObj.hasOwnProperty(stateProp)) {
|
|
|
+ p.timeValue = itemObj[timeProp]
|
|
|
+ p.loclValue = itemObj[loclProp]
|
|
|
+ p.stateValue = itemObj[stateProp]
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
})
|