|
@@ -258,7 +258,7 @@ export default {
|
|
|
},
|
|
|
async getNewChartsData (paramsObj) {
|
|
|
const params = {
|
|
|
- serviceId: SERVICE_ID.baggageCheckNew,
|
|
|
+ serviceId: this.chartsKey == 'CheckInBaggageCharts' ? SERVICE_ID.baggageCheckNew : SERVICE_ID.baggageAbnormalNew,
|
|
|
dataContent: { ...paramsObj },
|
|
|
event: '0'
|
|
|
}
|
|
@@ -267,7 +267,7 @@ export default {
|
|
|
},
|
|
|
getFormData (formData) {
|
|
|
this.resetDatas()
|
|
|
- if (this.chartsKey == 'CheckInBaggageCharts') {
|
|
|
+ if (this.chartsKey == 'CheckInBaggageCharts' || this.chartsKey == 'AbnormalBaggageDtCharts') {
|
|
|
const { range, interval, airport, airline, dateTime, passengerType, inOrOut, area, terminal } = formData
|
|
|
const params = {
|
|
|
scope: range,
|
|
@@ -275,8 +275,12 @@ export default {
|
|
|
location: airport || airline || terminal || area,
|
|
|
td: interval,
|
|
|
fd1: dateTime[0],
|
|
|
- fd2: dateTime[1],
|
|
|
- checktype: passengerType[0]
|
|
|
+ fd2: dateTime[1]
|
|
|
+ }
|
|
|
+ if (this.chartsKey == 'CheckInBaggageCharts') {
|
|
|
+ params.checktype = passengerType[0]
|
|
|
+ } else {
|
|
|
+ params.abnormalState = passengerType[0]
|
|
|
}
|
|
|
if (Array.isArray(params.location)) {
|
|
|
params.location = params.location.join(',')
|