terminal.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /*
  2. * @Author: Badguy
  3. * @Date: 2022-03-04 11:41:55
  4. * @LastEditTime: 2022-05-13 15:45:14
  5. * @LastEditors: your name
  6. * @Description: 航站视图通用部分
  7. * have a nice day!
  8. */
  9. import { queryMap, myQuery } from '@/api/dataIntegration'
  10. import {
  11. CurrentAirportQuery,
  12. RelatedAirportQuery,
  13. AirCompanyQuery,
  14. CraftTypeQuery,
  15. FlightAttrQuery,
  16. IntegratedQuery,
  17. IntegratedQueryTransfer
  18. } from '@/api/flight'
  19. export default {
  20. data() {
  21. return {
  22. // 表格数据
  23. tableData: [],
  24. spanArr: [],
  25. pos: 0,
  26. loading: false
  27. }
  28. },
  29. // created() {
  30. // this.currentAirportQuery()
  31. // },
  32. mounted() {
  33. // this.queryDepartureAirport()
  34. },
  35. computed: {
  36. dates() {
  37. return [this.startDate, this.endDate]
  38. },
  39. flightQueryParams() {
  40. return [
  41. this.startDate,
  42. this.endDate,
  43. this.departureAirPort,
  44. this.departureAirPort,
  45. this.landingAirport,
  46. this.landingAirport,
  47. this.carrier,
  48. this.carrier,
  49. this.craftType,
  50. this.craftType,
  51. this.flightAttr,
  52. this.flightAttr,
  53. this.search,
  54. this.search
  55. ]
  56. }
  57. },
  58. methods: {
  59. // 数据处理
  60. formatData(arr) {
  61. arr.forEach(item => {
  62. item['name'] = item['name'] + item['code3']
  63. item.builds &&
  64. item.builds.forEach(p => {
  65. p['code3'] = p.name
  66. })
  67. })
  68. return arr
  69. },
  70. // 表格数据格式化
  71. tableFormat(row, column, cellValue) {
  72. if (cellValue || cellValue === 0) {
  73. switch (column.property) {
  74. case 'FlightDate':
  75. return cellValue.split('-').slice(1).join('-')
  76. case 'PlanLandingTime':
  77. case 'PlanDepartureTime':
  78. case 'PrePlanLandingTime':
  79. case 'TransferFlightPlanDepartureTime':
  80. case 'ActualDepartureTime':
  81. case 'ActualLandingTime':
  82. // return cellValue.split('T')[1].split(':').slice(0, 2).join(':')
  83. return cellValue.replace('T', ' ')
  84. default:
  85. return cellValue
  86. }
  87. } else {
  88. return ''
  89. }
  90. },
  91. // 合计行
  92. summaryMethod({ columns, data }) {
  93. const sums = []
  94. if (columns.length > 0) {
  95. columns.forEach((column, index) => {
  96. if (index === 0) {
  97. sums[index] = '航班数:'+this.tableData.length
  98. } else if (
  99. // 需要计算的列
  100. [
  101. 'passagernum',
  102. 'checkNumber',
  103. 'not_actived',
  104. 'expect_load',
  105. 'security_all',
  106. 'sortNumber',
  107. 'loadNumber',
  108. 'waitfanj',
  109. 'unLoad',
  110. 'delbag',
  111. 'noBSM',
  112. 'transfer_all',
  113. 'reach',
  114. 'did_not_arrive',
  115. 'special',
  116. 'claim',
  117. 'uninstalled',
  118. 'to_be_uninstalled',
  119. 'terminateArrive',
  120. 'terminatedNotArrived',
  121. 'delivered',
  122. 'not_shipped',
  123. 'container',
  124. 'bulk',
  125. 'checkInTravellerNumber',
  126. 'checkInNumber',
  127. 'unActive',
  128. 'preLoad',
  129. 'noCheckInNumber',
  130. 'midIn',
  131. 'checkIns',
  132. 'projectedLoad',
  133. 'loadedQuantity',
  134. 'numberOfDestinationArrivals',
  135. 'endPointNotReached',
  136. 'specialQuantity',
  137. 'numberOfClaims',
  138. 'numberToBeUninstalled',
  139. 'terminateArrivalQuantity',
  140. 'terminateUnreachedQuantity',
  141. 'quantityShipped',
  142. 'undeliveredQuantity',
  143. 'numberOfBulk',
  144. 'inTransferBaggageCount',
  145. 'inTransferredBaggageCount',
  146. 'outTransferBaggageCount',
  147. 'outTransferredBaggageCount'
  148. ].includes(column.property)
  149. ) {
  150. const values = data.map(item => Number(item[column.property]))
  151. if (values.some(value => !isNaN(value))) {
  152. sums[index] = values.reduce((prev, curr) => {
  153. const value = Number(curr)
  154. if (!isNaN(value)) {
  155. return Number(prev) + Number(curr)
  156. } else {
  157. return Number(prev)
  158. }
  159. }, 0)
  160. } else {
  161. sums[index] = 0
  162. }
  163. } else {
  164. // 过滤某些字段不参与计算
  165. sums[index] = '-'
  166. }
  167. })
  168. }
  169. return sums
  170. },
  171. // 表格行点击跳转
  172. rowClick({ FlightNO, FlightDate }) {
  173. this.$router.push({
  174. path: `${this.$route.path}/flightView`,
  175. query: {
  176. FlightNO,
  177. FlightDate
  178. }
  179. })
  180. // this.$router.push({ path: '/departure/flightView', query: row })
  181. },
  182. // 全部机场查询
  183. async currentAirportQuery() {
  184. const params = {
  185. startDate: this.startDate,
  186. endDate: this.endDate
  187. }
  188. try {
  189. const res = await CurrentAirportQuery(params)
  190. if (res.code === 0) {
  191. if (res.returnData.length) {
  192. const datas = this.formatData(res.returnData)
  193. const datasCopy = this._.cloneDeep(datas)
  194. this.currentAirportList = datas
  195. const defaultData = datasCopy[0]
  196. // this.formData.currentAirport = [[defaultData.code3, defaultData.builds[0].code3]]
  197. // this.formData.currentAirport = [[defaultData.code3]]
  198. this.formData.currentAirport = [defaultData.code3]
  199. params.currentAirport = this.currentAirport
  200. this.getFormData(params)
  201. this.getTableData({
  202. ...params,
  203. world: this.formData.search
  204. })
  205. }
  206. } else {
  207. this.$message.error(res.message)
  208. }
  209. } catch (error) {
  210. console.log('出错了', error)
  211. }
  212. },
  213. // 目的站/始飞站查询
  214. async relatedAirportQuery(params = {}) {
  215. try {
  216. const res = await RelatedAirportQuery(params)
  217. if (res.code === 0) {
  218. const datas = this.formatData(res.returnData)
  219. this.relatedAirportList = datas
  220. } else {
  221. this.$message.error(res.message)
  222. }
  223. } catch (error) {
  224. console.log('出错了', error)
  225. }
  226. },
  227. // 航司查询
  228. async inboundCarrierQuery(params = {}) {
  229. try {
  230. const res = await AirCompanyQuery({
  231. ...params,
  232. type: 'IN'
  233. })
  234. if (res.code === 0) {
  235. this.carrierList = res.returnData
  236. } else {
  237. this.$message.error(res.message)
  238. }
  239. } catch (error) {
  240. console.log('出错了', error)
  241. }
  242. },
  243. // 航司查询
  244. async outgoingAirlineQuery(params = {}) {
  245. try {
  246. const res = await AirCompanyQuery({
  247. ...params,
  248. type: 'OUT'
  249. })
  250. if (res.code === 0) {
  251. this.carrierList = res.returnData
  252. } else {
  253. this.$message.error(res.message)
  254. }
  255. } catch (error) {
  256. console.log('出错了', error)
  257. }
  258. },
  259. // 机型查询
  260. async craftTypeQuery(params = {}) {
  261. try {
  262. const res = await CraftTypeQuery(params)
  263. if (res.code === 0) {
  264. this.craftTypeList = res.returnData.map(item => ({
  265. code3: item,
  266. name: item
  267. }))
  268. } else {
  269. this.$message.error(res.message)
  270. }
  271. } catch (error) {
  272. console.log('出错了', error)
  273. }
  274. },
  275. // 航线查询
  276. async flightAttrQuery(params = {}) {
  277. try {
  278. const res = await FlightAttrQuery(params)
  279. if (res.code === 0) {
  280. this.flightAttrList = res.returnData
  281. } else {
  282. this.$message.error(res.message)
  283. }
  284. } catch (error) {
  285. console.log('出错了', error)
  286. }
  287. },
  288. // 综合查询
  289. async integratedQuery(params = {}) {
  290. try {
  291. this.loading = true
  292. const res = await IntegratedQuery(params)
  293. if (res.code === 0) {
  294. const tableData = res.returnData
  295. this.initTableData(tableData)
  296. this.loading = false
  297. } else {
  298. this.$message.error(res.message)
  299. this.loading = false
  300. }
  301. } catch (error) {
  302. console.log('出错了', error)
  303. this.loading = false
  304. }
  305. },
  306. // 中转综合查询
  307. async integratedQueryTransfer(params = {}) {
  308. try {
  309. this.loading = true
  310. const res = await IntegratedQueryTransfer(params)
  311. if (res.code === 0) {
  312. const tableData = res.returnData
  313. this.initTableData(tableData)
  314. this.loading = false
  315. } else {
  316. this.$message.error(res.message)
  317. this.loading = false
  318. }
  319. } catch (error) {
  320. console.log('出错了', error)
  321. this.loading = false
  322. }
  323. },
  324. // 查询起飞机场 id: 31
  325. queryDepartureAirport() {
  326. return myQuery(queryMap.departureAirPort, ...this.dates)
  327. },
  328. // 查询降落机场 id: 32
  329. queryLandingAirport() {
  330. return myQuery(queryMap.landingAirport, ...this.dates)
  331. },
  332. // 按照降落机场查询起飞机场 id: 33
  333. queryDepartureAirportByLandingAirport() {
  334. return myQuery(queryMap.departureAirPortBylandingAirport, this.currentAirport, ...this.dates)
  335. },
  336. // 按照起飞机场查询降落机场 id: 34
  337. queryLandingAirportByDepartureAirport() {
  338. return myQuery(queryMap.landingAirportBydepartureAirPort, this.currentAirport, ...this.dates)
  339. },
  340. // 查询航司 id: 35
  341. queryCarrier() {
  342. return myQuery(queryMap.carrier, ...this.dates)
  343. },
  344. // 查询机型 id: 36
  345. queryCraftType() {
  346. return myQuery(queryMap.craftType, ...this.dates)
  347. },
  348. // 查询航线 id: 37
  349. queryAirline() {
  350. return myQuery(queryMap.flightAttr, ...this.dates)
  351. },
  352. // 查询进港航班 id: 38
  353. queryLandingFlight() {
  354. return myQuery(queryMap.landingFlight, ...this.flightQueryParams)
  355. },
  356. // 查询离港航班 id: 39
  357. queryDepartureFlight() {
  358. return myQuery(queryMap.departureFlight, ...this.flightQueryParams)
  359. },
  360. // 查询中转航班 id: 40
  361. queryTrasferFlight() {
  362. return myQuery(queryMap.transferFlight, ...this.flightQueryParams)
  363. }
  364. }
  365. }