|
@@ -324,6 +324,7 @@ import terminalMixin from '../../mixins/terminal'
|
|
import formMixin from '../../mixins/form'
|
|
import formMixin from '../../mixins/form'
|
|
import tableColsMixin from '../../mixins/tableCols'
|
|
import tableColsMixin from '../../mixins/tableCols'
|
|
import timeZoneMixin from '../../mixins/timeZone'
|
|
import timeZoneMixin from '../../mixins/timeZone'
|
|
|
|
+import pf from '@/layout/mixin/publicFunc'
|
|
import { TempQuery } from '@/api/temp'
|
|
import { TempQuery } from '@/api/temp'
|
|
import { GeneralDataReception } from '@/api/temp'
|
|
import { GeneralDataReception } from '@/api/temp'
|
|
import TableHeaderCell from '@/components/TableHeaderCell'
|
|
import TableHeaderCell from '@/components/TableHeaderCell'
|
|
@@ -333,7 +334,7 @@ import { mapGetters } from 'vuex'
|
|
export default {
|
|
export default {
|
|
name: 'DepartureTerminalView',
|
|
name: 'DepartureTerminalView',
|
|
components: { Dialog, TimeZoneSelector, TableHeaderCell },
|
|
components: { Dialog, TimeZoneSelector, TableHeaderCell },
|
|
- mixins: [terminalMixin, formMixin, tableColsMixin, timeZoneMixin],
|
|
|
|
|
|
+ mixins: [terminalMixin, formMixin, tableColsMixin, timeZoneMixin, pf],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
optionProps: {
|
|
optionProps: {
|
|
@@ -560,10 +561,11 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
async getWarningData() {
|
|
async getWarningData() {
|
|
try {
|
|
try {
|
|
- const res = await TempQuery({
|
|
|
|
- id: SERVICE_ID.departureWarningId,
|
|
|
|
- dataContent: []
|
|
|
|
- })
|
|
|
|
|
|
+ // const res = await TempQuery({
|
|
|
|
+ // id: SERVICE_ID.departureWarningId,
|
|
|
|
+ // dataContent: []
|
|
|
|
+ // })
|
|
|
|
+ const res = await this.getQueryList(SERVICE_ID.departureWarningId, {}, 1, 999)
|
|
if (Number(res.code) === 0) {
|
|
if (Number(res.code) === 0) {
|
|
const { listValues } = res.returnData
|
|
const { listValues } = res.returnData
|
|
this.WarningData = listValues
|
|
this.WarningData = listValues
|
|
@@ -625,10 +627,11 @@ export default {
|
|
// 选择机场
|
|
// 选择机场
|
|
async getAirPortData() {
|
|
async getAirPortData() {
|
|
try {
|
|
try {
|
|
- const res = await TempQuery({
|
|
|
|
- id: SERVICE_ID.departureAirLtId,
|
|
|
|
- dataContent: []
|
|
|
|
- })
|
|
|
|
|
|
+ // const res = await TempQuery({
|
|
|
|
+ // id: SERVICE_ID.departureAirLtId,
|
|
|
|
+ // dataContent: []
|
|
|
|
+ // })
|
|
|
|
+ const res = await this.getQueryListAuth(SERVICE_ID.departureAirLtId, {}, 1, 9999, 280)
|
|
if (Number(res.code) === 0) {
|
|
if (Number(res.code) === 0) {
|
|
this.AirportList = res.returnData.listValues
|
|
this.AirportList = res.returnData.listValues
|
|
this.formData.currentAirport = 'PEK'
|
|
this.formData.currentAirport = 'PEK'
|
|
@@ -645,10 +648,11 @@ export default {
|
|
// 选择航司
|
|
// 选择航司
|
|
async getAviationData() {
|
|
async getAviationData() {
|
|
try {
|
|
try {
|
|
- const res = await TempQuery({
|
|
|
|
- id: SERVICE_ID.departureAviJoinLtId,
|
|
|
|
- dataContent: [this.formData.currentAirport]
|
|
|
|
- })
|
|
|
|
|
|
+ // const res = await TempQuery({
|
|
|
|
+ // id: SERVICE_ID.departureAviJoinLtId,
|
|
|
|
+ // dataContent: [this.formData.currentAirport]
|
|
|
|
+ // })
|
|
|
|
+ const res = await this.getQueryListAuth(SERVICE_ID.departureAviJoinLtId, {}, 1, 9999, 281)
|
|
if (Number(res.code) === 0) {
|
|
if (Number(res.code) === 0) {
|
|
this.carrierProps = res.returnData.listValues
|
|
this.carrierProps = res.returnData.listValues
|
|
} else {
|
|
} else {
|
|
@@ -661,10 +665,11 @@ export default {
|
|
// 选择航司
|
|
// 选择航司
|
|
async upAviationData() {
|
|
async upAviationData() {
|
|
try {
|
|
try {
|
|
- const res = await TempQuery({
|
|
|
|
- id: SERVICE_ID.departureAviLeaveLtId,
|
|
|
|
- dataContent: [this.formData.currentAirport]
|
|
|
|
- })
|
|
|
|
|
|
+ // const res = await TempQuery({
|
|
|
|
+ // id: SERVICE_ID.departureAviLeaveLtId,
|
|
|
|
+ // dataContent: [this.formData.currentAirport]
|
|
|
|
+ // })
|
|
|
|
+ const res = await this.getQueryListAuth(SERVICE_ID.departureAviLeaveLtId, {}, 1, 9999, 281)
|
|
if (Number(res.code) === 0) {
|
|
if (Number(res.code) === 0) {
|
|
this.carrierPropsop = res.returnData.listValues
|
|
this.carrierPropsop = res.returnData.listValues
|
|
} else {
|
|
} else {
|
|
@@ -689,28 +694,29 @@ export default {
|
|
if (!this.formData.currentAirport || !this.startDate || !this.endDate) {
|
|
if (!this.formData.currentAirport || !this.startDate || !this.endDate) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- const arrs1 = [this.formData.inboundCarrier.length === 0 ? '' : this.formData.inboundCarrier[0]]
|
|
|
|
- const arrs2 = [this.formData.outgoingAirline.length === 0 ? '' : this.formData.outgoingAirline[0]]
|
|
|
|
- const arr = [
|
|
|
|
- this.formData.currentAirport,
|
|
|
|
- this.startDate,
|
|
|
|
- this.endDate,
|
|
|
|
- ...arrs1,
|
|
|
|
- ...arrs1,
|
|
|
|
- ...arrs1,
|
|
|
|
- ...arrs2,
|
|
|
|
- ...arrs2,
|
|
|
|
- ...arrs2
|
|
|
|
- // this.formData.inboundCarrier,
|
|
|
|
- // this.formData.outgoingAirline,
|
|
|
|
- // JSON.stringify(this.formData.inboundCarrier),
|
|
|
|
- // JSON.stringify(this.formData.outgoingAirline),
|
|
|
|
- ]
|
|
|
|
|
|
+ // const arrs1 = [this.formData.inboundCarrier.length === 0 ? '' : this.formData.inboundCarrier[0]]
|
|
|
|
+ // const arrs2 = [this.formData.outgoingAirline.length === 0 ? '' : this.formData.outgoingAirline[0]]
|
|
|
|
+ // const arr = [
|
|
|
|
+ // this.formData.currentAirport,
|
|
|
|
+ // this.startDate,
|
|
|
|
+ // this.endDate,
|
|
|
|
+ // ...arrs1,
|
|
|
|
+ // ...arrs1,
|
|
|
|
+ // ...arrs1,
|
|
|
|
+ // ...arrs2,
|
|
|
|
+ // ...arrs2,
|
|
|
|
+ // ...arrs2
|
|
|
|
+ // // this.formData.inboundCarrier,
|
|
|
|
+ // // this.formData.outgoingAirline,
|
|
|
|
+ // // JSON.stringify(this.formData.inboundCarrier),
|
|
|
|
+ // // JSON.stringify(this.formData.outgoingAirline),
|
|
|
|
+ // ]
|
|
try {
|
|
try {
|
|
- const res = await TempQuery({
|
|
|
|
- id: SERVICE_ID.departureTableLtId,
|
|
|
|
- dataContent: [...arr]
|
|
|
|
- })
|
|
|
|
|
|
+ // const res = await TempQuery({
|
|
|
|
+ // id: SERVICE_ID.departureTableLtId,
|
|
|
|
+ // dataContent: [...arr]
|
|
|
|
+ // })
|
|
|
|
+ const res = await this.getQueryList(SERVICE_ID.departureTableLtId, { departureAirport: this.formData.currentAirport, flightDateStart: this.startDate, flightDateEnd: this.endDate, inFlightNO: null, flightNO: null }, 1, 9999)
|
|
if (Number(res.code) === 0) {
|
|
if (Number(res.code) === 0) {
|
|
this.initTableData(res.returnData.listValues)
|
|
this.initTableData(res.returnData.listValues)
|
|
} else {
|
|
} else {
|
|
@@ -779,7 +785,7 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
- this.baggageCount = this.baggageCount + item.outTransferBaggageCount
|
|
|
|
|
|
+ this.baggageCount = this.baggageCount + Number(item.outTransferBaggageCount)
|
|
})
|
|
})
|
|
this.tableData = this._.sortBy(tableData, ['actualDepartureTime', 'flightNO', 'actualLandingTime', 'preFlightNO'])
|
|
this.tableData = this._.sortBy(tableData, ['actualDepartureTime', 'flightNO', 'actualLandingTime', 'preFlightNO'])
|
|
setTableFilters(this.tableData, this.tableDataFilters)
|
|
setTableFilters(this.tableData, this.tableDataFilters)
|