useFlightInfo.ts 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. import { CommonData, CommonValue } from '~/common'
  2. import { Query } from '@/api/webApi'
  3. import { ElMessage } from 'element-plus'
  4. const flightInfoItemsMap = {
  5. departure: [
  6. [
  7. {
  8. label: '起飞机场简称',
  9. key: 'departureAirportZh',
  10. },
  11. {
  12. label: '预计起飞时间',
  13. getter: info => info.planDepartureTime?.replace('T', ' ') ?? '',
  14. },
  15. {
  16. label: '实际起飞时间',
  17. getter: info => info.acDepartureTime?.replace('T', ' ') ?? '',
  18. },
  19. {
  20. label: '停机位',
  21. key: 'takeOffStand',
  22. },
  23. ],
  24. [
  25. {
  26. label: '特货信息/运单数',
  27. key: 'speCargoInfo',
  28. },
  29. {
  30. label: '核单运单数/件数',
  31. key: 'loadInfo',
  32. },
  33. // {
  34. // label: '中转进运单/货物数',
  35. // key: "transInfo",
  36. // },
  37. // {
  38. // label: '已配载集装器',
  39. // key: 'stowage_Yes',
  40. // showOverflowTooltip: true,
  41. // },
  42. {
  43. label: '交接复核集装器数',
  44. key: 'depotJoin',
  45. },
  46. {
  47. label: '已配载集装器/运单数/重量',
  48. key: 'loadPlane',
  49. },
  50. {
  51. label: '拉下集装器/件数',
  52. key: 'pull',
  53. },
  54. // {
  55. // label: '集装器数量',
  56. // key: 'stowage',
  57. // },
  58. ],
  59. [
  60. {
  61. label: '降落机场简称',
  62. key: 'landingAirportZh',
  63. },
  64. {
  65. label: '预计降落时间',
  66. getter: info => info.planLandingTime?.replace('T', ' ') ?? '',
  67. },
  68. {
  69. label: '实际降落时间',
  70. getter: info => info.acLandingTime?.replace('T', ' ') ?? '',
  71. },
  72. ],
  73. ],
  74. arrival: [
  75. [
  76. {
  77. label: '起飞机场简称',
  78. key: 'departureAirportZh',
  79. },
  80. {
  81. label: '预计起飞时间',
  82. getter: info => info.planDepartureTime?.replace('T', ' ') ?? '',
  83. },
  84. {
  85. label: '实际起飞时间',
  86. getter: info => info.acDepartureTime?.replace('T', ' ') ?? '',
  87. },
  88. ],
  89. [
  90. {
  91. label: '特货信息/运单数',
  92. key: 'speCargoInfo',
  93. },
  94. // {
  95. // label: '卸载运单数/货物数',
  96. // key: 'unLoadListInfo',
  97. // },
  98. // {
  99. // label: '中转进运单/货物数',
  100. // key: "transIn",
  101. // },
  102. // {
  103. // label: '已卸载集装器',
  104. // key: 'unloadStowageNum',
  105. // showOverflowTooltip: true,
  106. // },
  107. {
  108. label: '卸载集装器数(板/箱/卡)',
  109. key: 'unloadPlaneInfo',
  110. },
  111. // {
  112. // label: '货站交接数量(板/箱/卡)',
  113. // key: 'pull',
  114. // },
  115. {
  116. label: '理货完成运单数/件数',
  117. key: 'tally',
  118. },
  119. {
  120. label: '出库运单数/件数',
  121. key: 'outWarehouse',
  122. },
  123. ],
  124. [
  125. {
  126. label: '降落机场简称',
  127. key: 'landingAirportZh',
  128. },
  129. {
  130. label: '预计降落时间',
  131. getter: info => info.planLandingTime?.replace('T', ' ') ?? '',
  132. },
  133. {
  134. label: '实际降落时间',
  135. getter: info => info.acLandingTime?.replace('T', ' ') ?? '',
  136. },
  137. {
  138. label: '停机位',
  139. key: 'landingStand',
  140. },
  141. ],
  142. ],
  143. }
  144. export function useFlightInfo(name: string, dataContent: CommonValue[]) {
  145. const flightInfoItems = ref<
  146. {
  147. label: string
  148. key?: string
  149. getter?: (info: any) => string
  150. showOverflowTooltip?: boolean
  151. }[][]
  152. >([])
  153. const getFlightInfoItems = () => {
  154. flightInfoItems.value =
  155. flightInfoItemsMap[name.includes('Departure') ? 'departure' : 'arrival']
  156. }
  157. getFlightInfoItems()
  158. const flightInfo: CommonData = reactive({})
  159. const getFlightInfo = async () => {
  160. try {
  161. const {
  162. code,
  163. returnData: { listValues },
  164. message,
  165. } = await Query({
  166. id:
  167. DATACONTENT_ID[
  168. `${name.slice(0, 1).toLowerCase()}${name.slice(1)}Info`
  169. ],
  170. dataContent,
  171. })
  172. if (Number(code) !== 0) {
  173. throw new Error(message ?? '失败')
  174. }
  175. if (!listValues.length) {
  176. ElMessage.info('未查询到航班信息')
  177. return
  178. }
  179. Object.assign(flightInfo, listValues[0])
  180. } catch (error) {
  181. console.error(error)
  182. }
  183. }
  184. const computedFlightInfo = computed(() => item => {
  185. if (['departureAirportZh', 'landingAirportZh'].includes(item.key)) {
  186. return airportNameZhMap[flightInfo[item.key.slice(0, -2)]!]
  187. }
  188. if (item.getter) {
  189. return item.getter(flightInfo)
  190. }
  191. if (item.key) {
  192. return String(flightInfo[item.key] ?? '')
  193. }
  194. return ''
  195. })
  196. const airportNameZhMap: { [code: string]: string } = reactive({})
  197. const getAirportNameZh = async (airportCode: string) => {
  198. try {
  199. const {
  200. code,
  201. returnData: { listValues },
  202. message,
  203. } = await Query({
  204. id: DATACONTENT_ID.airportNameZh,
  205. dataContent: [airportCode],
  206. })
  207. if (Number(code) !== 0) {
  208. throw new Error(message ?? '失败')
  209. }
  210. if (!listValues.length) {
  211. ElMessage.info('未查询到航班中文名:' + airportCode)
  212. return airportCode
  213. }
  214. return listValues[0].airportname
  215. } catch (error) {
  216. console.error(error)
  217. return airportCode
  218. }
  219. }
  220. watch(flightInfo, async () => {
  221. const { departureAirport, landingAirport } = flightInfo
  222. if (departureAirport) {
  223. if (!airportNameZhMap[departureAirport]) {
  224. airportNameZhMap[departureAirport] = await getAirportNameZh(
  225. String(departureAirport)
  226. )
  227. }
  228. }
  229. if (landingAirport) {
  230. if (!airportNameZhMap[landingAirport]) {
  231. airportNameZhMap[landingAirport] = await getAirportNameZh(
  232. String(landingAirport)
  233. )
  234. }
  235. }
  236. })
  237. return {
  238. flightInfoItems,
  239. flightInfo,
  240. computedFlightInfo,
  241. getFlightInfo,
  242. }
  243. }