|
@@ -1,22 +1,22 @@
|
|
|
/*
|
|
|
* @Author: Badguy
|
|
|
* @Date: 2022-03-04 11:41:55
|
|
|
- * @LastEditTime: 2022-05-18 09:45:14
|
|
|
+ * @LastEditTime: 2022-05-18 18:03:17
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 航站视图通用部分
|
|
|
* have a nice day!
|
|
|
*/
|
|
|
|
|
|
import { queryMap, myQuery } from '@/api/dataIntegration'
|
|
|
-import {
|
|
|
- CurrentAirportQuery,
|
|
|
- RelatedAirportQuery,
|
|
|
- AirCompanyQuery,
|
|
|
- CraftTypeQuery,
|
|
|
- FlightAttrQuery,
|
|
|
- IntegratedQuery,
|
|
|
- IntegratedQueryTransfer
|
|
|
-} from '@/api/flight'
|
|
|
+// import {
|
|
|
+// CurrentAirportQuery,
|
|
|
+// RelatedAirportQuery,
|
|
|
+// AirCompanyQuery,
|
|
|
+// CraftTypeQuery,
|
|
|
+// FlightAttrQuery,
|
|
|
+// IntegratedQuery,
|
|
|
+// IntegratedQueryTransfer
|
|
|
+// } from '@/api/flight'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import { commonTableCellClass } from '@/utils/table'
|
|
|
|
|
@@ -154,16 +154,43 @@ export default {
|
|
|
},
|
|
|
cellClass({ row, column, rowIndex, columnIndex }) {
|
|
|
let classString = commonTableCellClass({ row, column, rowIndex, columnIndex })
|
|
|
- if (['FlightNO'].includes(column.property)) {
|
|
|
+ if (
|
|
|
+ [
|
|
|
+ 'FlightNO',
|
|
|
+ 'PreFlightNO',
|
|
|
+ 'inTransferBaggageCount',
|
|
|
+ 'tounLoad',
|
|
|
+ 'unLoad',
|
|
|
+ 'checkNumber',
|
|
|
+ 'unActive',
|
|
|
+ 'midIn',
|
|
|
+ 'noCheckInNumber'
|
|
|
+ ].includes(column.property) &&
|
|
|
+ row[column.property]
|
|
|
+ ) {
|
|
|
classString += 'cell-click'
|
|
|
- if (this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])) {
|
|
|
+ if (
|
|
|
+ this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])
|
|
|
+ ) {
|
|
|
classString += ' cell-clicked'
|
|
|
}
|
|
|
}
|
|
|
return classString
|
|
|
},
|
|
|
cellClick(row, column, cell, event) {
|
|
|
- if (['FlightNO'].includes(column.property)) {
|
|
|
+ if (
|
|
|
+ [
|
|
|
+ 'FlightNO',
|
|
|
+ 'PreFlightNO',
|
|
|
+ 'inTransferBaggageCount',
|
|
|
+ 'tounLoad',
|
|
|
+ 'unLoad',
|
|
|
+ 'checkNumber',
|
|
|
+ 'unActive',
|
|
|
+ 'midIn',
|
|
|
+ 'noCheckInNumber'
|
|
|
+ ].includes(column.property)
|
|
|
+ ) {
|
|
|
this.$store.dispatch('keepAlive/addClickedCell', {
|
|
|
cellValue: row[column.property],
|
|
|
columnProp: column.property,
|
|
@@ -180,7 +207,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
break
|
|
|
- case 'PreFlightNO': {
|
|
|
+ case 'PreFlightNO':
|
|
|
this.$router.push({
|
|
|
path: '/transfer/arrival/flightView',
|
|
|
query: {
|
|
@@ -189,7 +216,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
break
|
|
|
- }
|
|
|
case 'inTransferBaggageCount':
|
|
|
this.$router.push({
|
|
|
path: '/advance',
|
|
@@ -201,152 +227,218 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
break
|
|
|
+ case 'tounLoad':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ unLoad: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'unLoad':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ unLoad: 1
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'checkNumber':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ checkIn: 1
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'unActive':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ active: 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'midIn':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ transferIn: 1
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
+ case 'noCheckInNumber':
|
|
|
+ this.$router.push({
|
|
|
+ path: '/advance',
|
|
|
+ query: {
|
|
|
+ FlightNO: row.FlightNO,
|
|
|
+ startDate: row.FlightDate,
|
|
|
+ endDate: row.FlightDate,
|
|
|
+ canceled: 1
|
|
|
+ }
|
|
|
+ })
|
|
|
+ break
|
|
|
default:
|
|
|
break
|
|
|
}
|
|
|
},
|
|
|
- // 全部机场查询
|
|
|
- async currentAirportQuery() {
|
|
|
- const params = {
|
|
|
- startDate: this.startDate,
|
|
|
- endDate: this.endDate
|
|
|
- }
|
|
|
- try {
|
|
|
- const res = await CurrentAirportQuery(params)
|
|
|
- if (res.code === 0) {
|
|
|
- if (res.returnData.length) {
|
|
|
- const datas = this.formatData(res.returnData)
|
|
|
- const datasCopy = this._.cloneDeep(datas)
|
|
|
- this.currentAirportList = datas
|
|
|
- const defaultData = datasCopy[0]
|
|
|
- // this.formData.currentAirport = [[defaultData.code3, defaultData.builds[0].code3]]
|
|
|
- // this.formData.currentAirport = [[defaultData.code3]]
|
|
|
- this.formData.currentAirport = [defaultData.code3]
|
|
|
- params.currentAirport = this.currentAirport
|
|
|
- this.getFormData(params)
|
|
|
- this.getTableData({
|
|
|
- ...params,
|
|
|
- world: this.formData.search
|
|
|
- })
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 目的站/始飞站查询
|
|
|
- async relatedAirportQuery(params = {}) {
|
|
|
- try {
|
|
|
- const res = await RelatedAirportQuery(params)
|
|
|
- if (res.code === 0) {
|
|
|
- const datas = this.formatData(res.returnData)
|
|
|
- this.relatedAirportList = datas
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 航司查询
|
|
|
- async inboundCarrierQuery(params = {}) {
|
|
|
- try {
|
|
|
- const res = await AirCompanyQuery({
|
|
|
- ...params,
|
|
|
- type: 'IN'
|
|
|
- })
|
|
|
- if (res.code === 0) {
|
|
|
- this.carrierList = res.returnData
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 航司查询
|
|
|
- async outgoingAirlineQuery(params = {}) {
|
|
|
- try {
|
|
|
- const res = await AirCompanyQuery({
|
|
|
- ...params,
|
|
|
- type: 'OUT'
|
|
|
- })
|
|
|
- if (res.code === 0) {
|
|
|
- this.carrierList = res.returnData
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 机型查询
|
|
|
- async craftTypeQuery(params = {}) {
|
|
|
- try {
|
|
|
- const res = await CraftTypeQuery(params)
|
|
|
- if (res.code === 0) {
|
|
|
- this.craftTypeList = res.returnData.map(item => ({
|
|
|
- code3: item,
|
|
|
- name: item
|
|
|
- }))
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 航线查询
|
|
|
- async flightAttrQuery(params = {}) {
|
|
|
- try {
|
|
|
- const res = await FlightAttrQuery(params)
|
|
|
- if (res.code === 0) {
|
|
|
- this.flightAttrList = res.returnData
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- }
|
|
|
- },
|
|
|
- // 综合查询
|
|
|
- async integratedQuery(params = {}) {
|
|
|
- try {
|
|
|
- this.loading = true
|
|
|
- const res = await IntegratedQuery(params)
|
|
|
- if (res.code === 0) {
|
|
|
- const tableData = res.returnData
|
|
|
- this.initTableData(tableData)
|
|
|
- this.loading = false
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- this.loading = false
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- this.loading = false
|
|
|
- }
|
|
|
- },
|
|
|
- // 中转综合查询
|
|
|
- async integratedQueryTransfer(params = {}) {
|
|
|
- try {
|
|
|
- this.loading = true
|
|
|
- const res = await IntegratedQueryTransfer(params)
|
|
|
- if (res.code === 0) {
|
|
|
- const tableData = res.returnData
|
|
|
- this.initTableData(tableData)
|
|
|
- this.loading = false
|
|
|
- } else {
|
|
|
- this.$message.error(res.message)
|
|
|
- this.loading = false
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- console.log('出错了', error)
|
|
|
- this.loading = false
|
|
|
- }
|
|
|
- },
|
|
|
+ // // 全部机场查询
|
|
|
+ // async currentAirportQuery() {
|
|
|
+ // const params = {
|
|
|
+ // startDate: this.startDate,
|
|
|
+ // endDate: this.endDate
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // const res = await CurrentAirportQuery(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // if (res.returnData.length) {
|
|
|
+ // const datas = this.formatData(res.returnData)
|
|
|
+ // const datasCopy = this._.cloneDeep(datas)
|
|
|
+ // this.currentAirportList = datas
|
|
|
+ // const defaultData = datasCopy[0]
|
|
|
+ // // this.formData.currentAirport = [[defaultData.code3, defaultData.builds[0].code3]]
|
|
|
+ // // this.formData.currentAirport = [[defaultData.code3]]
|
|
|
+ // this.formData.currentAirport = [defaultData.code3]
|
|
|
+ // params.currentAirport = this.currentAirport
|
|
|
+ // this.getFormData(params)
|
|
|
+ // this.getTableData({
|
|
|
+ // ...params,
|
|
|
+ // world: this.formData.search
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 目的站/始飞站查询
|
|
|
+ // async relatedAirportQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // const res = await RelatedAirportQuery(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // const datas = this.formatData(res.returnData)
|
|
|
+ // this.relatedAirportList = datas
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 航司查询
|
|
|
+ // async inboundCarrierQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // const res = await AirCompanyQuery({
|
|
|
+ // ...params,
|
|
|
+ // type: 'IN'
|
|
|
+ // })
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // this.carrierList = res.returnData
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 航司查询
|
|
|
+ // async outgoingAirlineQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // const res = await AirCompanyQuery({
|
|
|
+ // ...params,
|
|
|
+ // type: 'OUT'
|
|
|
+ // })
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // this.carrierList = res.returnData
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 机型查询
|
|
|
+ // async craftTypeQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // const res = await CraftTypeQuery(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // this.craftTypeList = res.returnData.map(item => ({
|
|
|
+ // code3: item,
|
|
|
+ // name: item
|
|
|
+ // }))
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 航线查询
|
|
|
+ // async flightAttrQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // const res = await FlightAttrQuery(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // this.flightAttrList = res.returnData
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 综合查询
|
|
|
+ // async integratedQuery(params = {}) {
|
|
|
+ // try {
|
|
|
+ // this.loading = true
|
|
|
+ // const res = await IntegratedQuery(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // const tableData = res.returnData
|
|
|
+ // this.initTableData(tableData)
|
|
|
+ // this.loading = false
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // this.loading = false
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // this.loading = false
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // // 中转综合查询
|
|
|
+ // async integratedQueryTransfer(params = {}) {
|
|
|
+ // try {
|
|
|
+ // this.loading = true
|
|
|
+ // const res = await IntegratedQueryTransfer(params)
|
|
|
+ // if (res.code === 0) {
|
|
|
+ // const tableData = res.returnData
|
|
|
+ // this.initTableData(tableData)
|
|
|
+ // this.loading = false
|
|
|
+ // } else {
|
|
|
+ // this.$message.error(res.message)
|
|
|
+ // this.loading = false
|
|
|
+ // }
|
|
|
+ // } catch (error) {
|
|
|
+ // console.log('出错了', error)
|
|
|
+ // this.loading = false
|
|
|
+ // }
|
|
|
+ // },
|
|
|
// 查询起飞机场 id: 31
|
|
|
queryDepartureAirport() {
|
|
|
return myQuery(queryMap.departureAirPort, ...this.dates)
|