index.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-06-28 10:04:17
  5. * @LastEditors: your name
  6. * @Description: 中转进港
  7. -->
  8. <template>
  9. <div class="transfer-in">
  10. <!--功能区-表单-->
  11. <div
  12. ref="formWrap"
  13. class="terminal-form-wrap"
  14. >
  15. <el-form
  16. ref="form"
  17. :inline="true"
  18. :model="formData"
  19. :rules="rules"
  20. class="form"
  21. >
  22. <div class="form-left">
  23. <el-form-item prop="currentAirport">
  24. <!-- <el-cascader
  25. v-model="formData.currentAirport"
  26. style="width:144px;margin-left:10px"
  27. placeholder="全部机场"
  28. size="small"
  29. :options="currentAirportList"
  30. :props="currentAirportProps"
  31. collapse-tags
  32. clearable
  33. filterable
  34. @change="setCurrentAirport"
  35. /> -->
  36. <el-select
  37. v-model="formData.currentAirport"
  38. class="input-shadow"
  39. size="small"
  40. style="width: 100px"
  41. filterable
  42. default-first-option
  43. placeholder="请选择机场"
  44. @change="airPortChange"
  45. >
  46. <el-option
  47. v-for="(item, index) in AirportList"
  48. :key="index"
  49. :label="item.planDepartureApt"
  50. :value="item.planDepartureApt"
  51. />
  52. </el-select>
  53. </el-form-item>
  54. <el-form-item prop="inboundCarrier">
  55. <el-cascader
  56. v-model="formData.inboundCarrier"
  57. class="input-shadow"
  58. style="width: 140px"
  59. size="small"
  60. :options="carrierProps"
  61. :props="optionProps"
  62. placeholder="进港承运航司"
  63. collapse-tags
  64. clearable
  65. filterable
  66. default-first-option
  67. @change="resetLoopEvent"
  68. />
  69. </el-form-item>
  70. <el-form-item prop="outgoingAirline">
  71. <el-cascader
  72. v-model="formData.outgoingAirline"
  73. class="input-shadow"
  74. style="width: 140px"
  75. size="small"
  76. :options="carrierPropsop"
  77. :props="optionPropser"
  78. placeholder="离港承运航司"
  79. collapse-tags
  80. clearable
  81. filterable
  82. default-first-option
  83. @change="resetLoopEvent"
  84. />
  85. </el-form-item>
  86. <!-- <el-form-item prop="startDate">
  87. <el-date-picker
  88. v-model="formData.startDate"
  89. class="input-shadow"
  90. style="width: 216px"
  91. size="small"
  92. type="date"
  93. value-format="yyyy-MM-dd"
  94. placeholder="开始时间"
  95. @change="startDateChangeHandler"
  96. />
  97. </el-form-item>
  98. <el-form-item prop="endDate">
  99. <el-date-picker
  100. v-model="formData.endDate"
  101. class="input-shadow"
  102. style="width: 216px"
  103. size="small"
  104. type="date"
  105. value-format="yyyy-MM-dd"
  106. placeholder="结束时间"
  107. @change="endDateChangeHandler"
  108. />
  109. </el-form-item> -->
  110. <el-form-item
  111. prop="flightDate"
  112. label="航班日期"
  113. >
  114. <el-date-picker
  115. v-model="formData.flightDate"
  116. :clearable="false"
  117. size="small"
  118. style="width: 280px"
  119. type="daterange"
  120. value-format="yyyy-MM-dd"
  121. start-placeholder="开始日期"
  122. end-placeholder="结束日期"
  123. :picker-options="dateRangePickerOptions"
  124. @change="dateChangeHandler"
  125. />
  126. </el-form-item>
  127. <el-form-item>
  128. <div class="box-item">
  129. <p>预计中转数:</p>
  130. <li
  131. v-for="(item, index) in orderNum"
  132. :key="index"
  133. :class="{ 'number-item': !isNaN(item), 'mark-item': isNaN(item) }"
  134. >
  135. <span v-if="!isNaN(item)">
  136. <i ref="numberItem">0123456789</i>
  137. </span>
  138. <span
  139. v-else
  140. class="comma"
  141. >{{ item }}</span
  142. >
  143. </li>
  144. </div>
  145. </el-form-item>
  146. </div>
  147. <div
  148. class="form-right"
  149. @keyup.enter="onSubmit(1)"
  150. >
  151. <el-form-item prop="search">
  152. <el-popover
  153. :value="popoverVisible"
  154. placement="bottom"
  155. trigger="manual"
  156. >
  157. <span>请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)</span>
  158. <el-input
  159. slot="reference"
  160. v-model="formData.search"
  161. class="input-shadow"
  162. style="width: 240px"
  163. size="small"
  164. placeholder="请输入内容"
  165. prefix-icon="el-icon-search"
  166. clearable
  167. @focus="popoverVisible = true"
  168. @blur="popoverVisible = false"
  169. />
  170. </el-popover>
  171. </el-form-item>
  172. <el-form-item>
  173. <el-button
  174. class="btn-shadow"
  175. size="mini"
  176. type="primary"
  177. @click="onSubmit(1)"
  178. >搜索</el-button
  179. >
  180. </el-form-item>
  181. <el-form-item>
  182. <el-button
  183. class="btn-shadow"
  184. size="mini"
  185. type="primary"
  186. @click="changeView"
  187. >切换视角</el-button
  188. >
  189. </el-form-item>
  190. <!-- <el-form-item v-is="['ti_timeIcon']">
  191. <TimeZoneSelector />
  192. </el-form-item> -->
  193. <el-form-item>
  194. <TimeZoneSelector />
  195. </el-form-item>
  196. <!-- <el-form-item v-is="['ti_columnSettings']">
  197. <img class="btn-img btn-shadow" src="@/assets/baggage/ic_setting.png" title="列设置" @click="show" />
  198. </el-form-item> -->
  199. <el-form-item>
  200. <img
  201. class="btn-img btn-shadow"
  202. src="@/assets/baggage/ic_setting.png"
  203. title="列设置"
  204. @click="show"
  205. />
  206. </el-form-item>
  207. <!-- <el-form-item v-is="['dm_dt_columnSettings']">
  208. <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航站中转进港列表')" />
  209. </el-form-item> -->
  210. <el-form-item>
  211. <img
  212. class="btn-img btn-shadow"
  213. src="@/assets/baggage/ic_export.png"
  214. title="导出"
  215. @click="exportHandler('table', '航站中转进港列表')"
  216. />
  217. </el-form-item>
  218. </div>
  219. </el-form>
  220. </div>
  221. <!--表格-->
  222. <div
  223. v-loading="loading"
  224. class="terminal-table"
  225. element-loading-text="拼命加载中"
  226. element-loading-spinner="el-icon-loading"
  227. element-loading-background="rgba(0, 0, 0, 0.8)"
  228. >
  229. <el-table
  230. ref="table"
  231. class="table"
  232. :data="dealedTableData"
  233. :height="computedTableHeight"
  234. show-summary
  235. :summary-method="summaryMethod"
  236. :span-method="arraySpanMethod"
  237. :header-cell-class-name="headerCellClass"
  238. :row-class-name="tableRowClassName"
  239. :cell-class-name="cellClass"
  240. border
  241. stripe
  242. fit
  243. @cell-click="cellClickHandler"
  244. >
  245. <el-table-column
  246. v-for="col in tableColsCopy"
  247. :key="col.prop"
  248. :prop="col.prop"
  249. :label="col.label"
  250. :width="col.width"
  251. :fixed="col.fixed"
  252. >
  253. <el-table-column
  254. v-for="childCol in col.children"
  255. :key="childCol.prop"
  256. :prop="childCol.prop"
  257. :label="childCol.label"
  258. :width="childCol.width"
  259. :formatter="tableFormat"
  260. >
  261. <template #header>
  262. <el-tooltip
  263. :content="childCol.desc || childCol.label"
  264. placement="top"
  265. >
  266. <TableHeaderCell
  267. :label="childCol.label"
  268. :filter-options="tableDataFilters[childCol.prop]"
  269. :filter-values.sync="filterValues[childCol.prop]"
  270. :sortable="childCol.sortable"
  271. :sort-rule.sync="tableDataSortRules[childCol.prop]"
  272. />
  273. </el-tooltip>
  274. </template>
  275. </el-table-column>
  276. </el-table-column>
  277. </el-table>
  278. </div>
  279. <!--列设置-->
  280. <Dialog
  281. :flag="dialogFlag"
  282. class="dialog-check-group"
  283. >
  284. <div class="dialog-wrapper">
  285. <div class="title">列设置</div>
  286. <div class="content">
  287. <el-tree
  288. ref="columnSetTree"
  289. :data="tableCols"
  290. :class="colsCheckClass"
  291. show-checkbox
  292. node-key="index"
  293. :default-expand-all="true"
  294. :props="{
  295. label: 'label',
  296. children: 'children'
  297. }"
  298. :default-checked-keys="checkedKeysTemp"
  299. @check="handleCheck"
  300. />
  301. </div>
  302. <div class="foot right t30">
  303. <el-button
  304. size="medium"
  305. class="r24"
  306. type="primary"
  307. @click="onCheck"
  308. >确定</el-button
  309. >
  310. <el-button
  311. size="medium"
  312. @click="hide"
  313. >取消</el-button
  314. >
  315. </div>
  316. </div>
  317. </Dialog>
  318. </div>
  319. </template>
  320. <script>
  321. import Dialog from '@/layout/components/Dialog'
  322. import TimeZoneSelector from '@/components/TimeZoneSelector'
  323. import terminalMixin from '../../mixins/terminal'
  324. import formMixin from '../../mixins/form'
  325. import tableColsMixin from '../../mixins/tableCols'
  326. import timeZoneMixin from '../../mixins/timeZone'
  327. import pf from '@/layout/mixin/publicFunc'
  328. // import { TempQuery } from '@/api/temp'
  329. import { GeneralDataReception } from '@/api/temp'
  330. import TableHeaderCell from '@/components/TableHeaderCell'
  331. import { setTableFilters, exportToExcel, timeInZone } from '@/utils/table'
  332. import { parseTime } from '@/utils/index'
  333. import { mapGetters } from 'vuex'
  334. export default {
  335. name: 'DepartureTerminalView',
  336. components: { Dialog, TimeZoneSelector, TableHeaderCell },
  337. mixins: [terminalMixin, formMixin, tableColsMixin, timeZoneMixin, pf],
  338. data() {
  339. return {
  340. optionProps: {
  341. value: 'inAicompanyCode2',
  342. label: 'inAicompanyCode2'
  343. },
  344. optionPropser: {
  345. value: 'outAicompanyCode2',
  346. label: 'outAicompanyCode2'
  347. },
  348. popoverVisible: false,
  349. orderNum: ['0', '0', '0', '0', '0', '0'], // 默认总数
  350. // 初始表头
  351. tableCols: [
  352. {
  353. prop: 'arrivalInfo',
  354. label: '进港航班',
  355. width: 180,
  356. fixed: 'left',
  357. children: [
  358. {
  359. prop: 'preFlightNO',
  360. label: '航班号',
  361. desc: '进港航班编号',
  362. width: 80,
  363. filterable: true,
  364. sortable: true
  365. },
  366. {
  367. prop: 'preFlightDate',
  368. label: '航班日期',
  369. desc: '指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
  370. width: 100
  371. },
  372. {
  373. prop: 'preAirport',
  374. label: '起飞航站',
  375. desc: '指进港航班的起飞机场三字码',
  376. width: 100,
  377. filterable: true,
  378. sortable: true
  379. },
  380. {
  381. prop: 'actualLandingTime',
  382. label: '降落时间',
  383. desc: '根据优先级别显示时间。优先级别:1.实际降落时间,2.预计降落时间,3.计划降落时间',
  384. width: 100
  385. },
  386. {
  387. prop: 'landingBuild',
  388. label: '降落航站楼',
  389. desc: '指航班降落后位于机场的哪个航站楼',
  390. width: 98,
  391. filterable: true,
  392. sortable: true
  393. },
  394. {
  395. prop: 'carousel',
  396. label: '行李转盘',
  397. desc: '指航班到达后行李提取的地方,仅显示最新信息',
  398. width: 100,
  399. filterable: true,
  400. sortable: true
  401. },
  402. {
  403. prop: 'standForLanding',
  404. label: '降落停机位',
  405. desc: '指航班的停机位代码,数据是变化的,仅显示最新信息',
  406. width: 98,
  407. filterable: true,
  408. sortable: true
  409. },
  410. {
  411. prop: 'inTransferBaggageCount',
  412. label: '中转行李数',
  413. desc: '指航班在本航站预计需要中转至对应航班的行李数量'
  414. }
  415. ]
  416. },
  417. {
  418. prop: 'departureInfo',
  419. label: '离港航班',
  420. children: [
  421. {
  422. prop: 'inTransferredBaggageCount',
  423. label: '已中转行李数',
  424. desc: '指航班在本航站实际已经中转至对应航班的行李数量',
  425. width: 100
  426. },
  427. {
  428. prop: 'flightNO',
  429. label: '航班号',
  430. desc: '指航班编号',
  431. width: 80,
  432. filterable: true,
  433. sortable: true
  434. },
  435. {
  436. prop: 'flightDate',
  437. label: '航班日期',
  438. desc: '指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
  439. width: 100
  440. },
  441. {
  442. prop: 'actualDepartureTime',
  443. label: '起飞时间',
  444. desc: '指航班预计起飞时间,数据是变化的,仅显示最新结果',
  445. width: 100
  446. },
  447. {
  448. prop: 'targetAirport',
  449. label: '目的站',
  450. desc: '指航班执飞航段的目的航站,以航站三字码+航站简称显示',
  451. filterable: true,
  452. sortable: true
  453. },
  454. {
  455. prop: 'departureBuild',
  456. label: '起飞航站楼',
  457. desc: '指航班执飞航段的起飞航站的航站楼',
  458. width: 98,
  459. filterable: true,
  460. sortable: true
  461. },
  462. {
  463. prop: 'bordingGate',
  464. label: '起飞登机口',
  465. desc: '指航班的登机口代码,数据是变化的,仅显示最新信息',
  466. width: 98,
  467. filterable: true,
  468. sortable: true
  469. },
  470. {
  471. prop: 'standForDepartrue',
  472. label: '起飞停机位',
  473. desc: '指航班的停机位代码,数据是变化的,仅显示最新信息',
  474. width: 98,
  475. filterable: true,
  476. sortable: true
  477. },
  478. // {
  479. // prop: 'outTransferBaggageCount',
  480. // label: '中转进行李数',
  481. // desc: '指其它航班预计中转至本航班的行李数量',
  482. // width: 100
  483. // },
  484. // {
  485. // prop: 'outTransferredBaggageCount',
  486. // label: '已中转进行李数',
  487. // desc: '指其它航班实际已中转至本航班的行李数量',
  488. // width: 120
  489. // },
  490. {
  491. prop: 'timeDifference',
  492. label: '转运时间',
  493. desc: '指中转动作完成时间'
  494. }
  495. ]
  496. }
  497. ],
  498. loading: false,
  499. AirportList: [],
  500. carrierProps: [],
  501. carrierPropsop: [],
  502. loopEvent: null,
  503. arrivalCount: 0,
  504. baggageCount: 0,
  505. hasSetTableScroll: false,
  506. spanArr: [],
  507. contactDot: 0,
  508. flag: 0,
  509. table: null,
  510. WarningData: []
  511. }
  512. },
  513. computed: {
  514. singleDay() {
  515. return this.startDate === this.endDate
  516. },
  517. ...mapGetters(['timeZone'])
  518. },
  519. watch: {
  520. dealedTableData: {
  521. handler(val) {
  522. this.spanArr = []
  523. let contactDot = this.contactDot
  524. val.forEach((item, index, arr) => {
  525. if (index === 0) {
  526. this.spanArr.push(1)
  527. } else {
  528. if (
  529. item['preFlightNO'] === arr[index - 1]['preFlightNO'] &&
  530. item['preFlightDate'] === arr[index - 1]['preFlightDate']
  531. ) {
  532. this.spanArr[contactDot] += 1
  533. this.spanArr.push(0)
  534. } else {
  535. this.spanArr.push(1)
  536. contactDot = index
  537. }
  538. }
  539. })
  540. },
  541. deep: true
  542. }
  543. },
  544. created() {
  545. // this.getAirPortData()
  546. },
  547. mounted() {
  548. this.$refs['form'].validateField('flightDate')
  549. this.getAirPortData()
  550. this.table = this.$refs.table.bodyWrapper
  551. const that = this
  552. this.table.addEventListener('scroll', () => {
  553. that.scrollTop = this.table.scrollTop
  554. })
  555. },
  556. activated() {
  557. const { currentAirport, startDate, endDate } = this.$route.query
  558. if ((currentAirport ?? '') !== '') {
  559. this.formData.currentAirport = currentAirport
  560. }
  561. if ((startDate ?? '') !== '') {
  562. this.formData.flightDate[0] = startDate
  563. }
  564. if ((endDate ?? '') !== '') {
  565. this.formData.flightDate[1] = endDate
  566. }
  567. this.table.scrollTop = this.scrollTop
  568. this.getTableData()
  569. this.getWarningData()
  570. this.loopEvent = setInterval(this.getTableData, LOOP_INTERVAL.transferArrivalTable)
  571. },
  572. deactivated() {
  573. if (this.loopEvent) {
  574. clearInterval(this.loopEvent)
  575. this.loopEvent = null
  576. }
  577. },
  578. beforeDestroy() {
  579. if (this.loopEvent) {
  580. clearInterval(this.loopEvent)
  581. this.loopEvent = null
  582. }
  583. },
  584. methods: {
  585. async getWarningData() {
  586. try {
  587. // const res = await TempQuery({
  588. // id: SERVICE_ID.departureWarningId,
  589. // dataContent: []
  590. // })
  591. const res = await this.getQueryList(SERVICE_ID.departureWarningId, {}, 1, 999)
  592. if (Number(res.code) === 0) {
  593. const { listValues } = res.returnData
  594. this.WarningData = listValues
  595. } else {
  596. this.$message.error(res.message)
  597. }
  598. } catch (error) {
  599. this.$message.error('失败')
  600. }
  601. },
  602. resetLoopEvent() {
  603. this.loading = true
  604. this.hasSetTableScroll = false
  605. this.loopEvent && clearInterval(this.loopEvent)
  606. this.getTableData()
  607. this.loopEvent = setInterval(this.getTableData, LOOP_INTERVAL.transferArrivalTable)
  608. },
  609. headerCellClass({ row, column }) {
  610. const classes = []
  611. const rule = this.tableDataSortRules[column.property]
  612. if (rule) {
  613. classes.push(rule)
  614. }
  615. return classes.join(' ')
  616. },
  617. tableRowClassName({ row, rowIndex }) {
  618. const classes = []
  619. if (row.hasArrived) {
  620. classes.push('bgl-hui')
  621. if (rowIndex === this.arrivalCount - 1) {
  622. classes.push('redBorder')
  623. }
  624. }
  625. return classes.join(' ')
  626. },
  627. changeView() {
  628. const query = {
  629. currentAirport: this.formData.currentAirport,
  630. startDate: this.startDate,
  631. endDate: this.endDate
  632. }
  633. this.$router.push({
  634. path:'/transfer/departure',
  635. query
  636. })
  637. },
  638. airPortChange() {
  639. this.getAviationData()
  640. this.upAviationData()
  641. this.resetLoopEvent()
  642. },
  643. dateChangeHandler() {
  644. this.getAviationData()
  645. this.upAviationData()
  646. this.resetLoopEvent()
  647. },
  648. // 选择机场
  649. async getAirPortData() {
  650. try {
  651. const res = await this.getQueryListAuth(SERVICE_ID.departureAirId, {}, 1, 9999, 280)
  652. if (Number(res.code) === 0) {
  653. if (res.returnData?.listValues?.length) {
  654. this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
  655. if (!this.formData.currentAirport) {
  656. const defaultAirport = 'PEK'
  657. let currentAirport = res.returnData.listValues[0].planDepartureApt
  658. if (res.returnData.listValues.some(item => item.planDepartureApt === defaultAirport)) {
  659. currentAirport = defaultAirport
  660. }
  661. this.formData.currentAirport = currentAirport
  662. }
  663. this.getAviationData()
  664. this.upAviationData()
  665. this.resetLoopEvent()
  666. } else {
  667. this.$message.warning('无航站数据权限')
  668. }
  669. } else {
  670. this.$message.error(res.message)
  671. }
  672. } catch (error) {
  673. this.$message.error('失败')
  674. }
  675. },
  676. // 选择航司
  677. async getAviationData() {
  678. try {
  679. // const res = await TempQuery({
  680. // id: SERVICE_ID.departureAviJoinId,
  681. // dataContent: [this.formData.currentAirport]
  682. // })
  683. const res = await this.getQueryListAuth(SERVICE_ID.departureAviJoinId, {}, 1, 9999, 281)
  684. if (Number(res.code) === 0) {
  685. this.carrierProps = res.returnData.listValues
  686. } else {
  687. this.$message.error(res.message)
  688. }
  689. } catch (error) {
  690. this.$message.error('失败')
  691. }
  692. },
  693. // 选择航司
  694. async upAviationData() {
  695. try {
  696. // const res = await TempQuery({
  697. // id: SERVICE_ID.departureAviLeaveId,
  698. // dataContent: [this.formData.currentAirport]
  699. // })
  700. const res = await this.getQueryListAuth(SERVICE_ID.departureAviLeaveId, {}, 1, 9999, 281)
  701. if (Number(res.code) === 0) {
  702. this.carrierPropsop = res.returnData.listValues
  703. } else {
  704. this.$message.error(res.message)
  705. }
  706. } catch (error) {
  707. this.$message.error('失败')
  708. }
  709. },
  710. // 获取表单下拉框数据
  711. // getFormData(params) {
  712. // this.relatedAirportQuery({
  713. // ...params,
  714. // type: 'OUT'
  715. // })
  716. // this.outgoingAirlineQuery(params)
  717. // this.craftTypeQuery(params)
  718. // this.flightAttrQuery(params)
  719. // },
  720. // 获取表格数据
  721. async getTableData() {
  722. if (!this.formData.currentAirport || !this.startDate || !this.endDate) {
  723. return
  724. }
  725. // const arrs1 = [this.formData.inboundCarrier.length === 0 ? '' : this.formData.inboundCarrier[0]]
  726. // const arrs2 = [this.formData.outgoingAirline.length === 0 ? '' : this.formData.outgoingAirline[0]]
  727. // const arr = [
  728. // this.formData.currentAirport,
  729. // this.startDate,
  730. // this.endDate,
  731. // ...arrs1,
  732. // ...arrs1,
  733. // ...arrs1,
  734. // ...arrs2,
  735. // ...arrs2,
  736. // ...arrs2
  737. // // this.formData.inboundCarrier,
  738. // // this.formData.outgoingAirline,
  739. // // JSON.stringify(this.formData.inboundCarrier),
  740. // // JSON.stringify(this.formData.outgoingAirline),
  741. // ]
  742. try {
  743. // const res = await TempQuery({
  744. // id: SERVICE_ID.departureTableId,
  745. // dataContent: [...arr]
  746. // })
  747. const res = await this.getQueryList(SERVICE_ID.departureTableId, { departureAirport: this.formData.currentAirport, flightDateStart: this.startDate, flightDateEnd: this.endDate, inFlightNO: null, flightNO: null }, 1, 9999)
  748. if (Number(res.code) === 0) {
  749. this.initTableData(res.returnData.listValues)
  750. } else {
  751. }
  752. this.loading = false
  753. } catch (error) {
  754. if (this.loopEvent) {
  755. clearInterval(this.loopEvent)
  756. this.loopEvent = null
  757. }
  758. this.loading = false
  759. }
  760. },
  761. initTableData(tableData) {
  762. const currentTime = new Date()
  763. const curTime = this.formatTime(currentTime)
  764. this.baggageCount = 0
  765. tableData.forEach(item => {
  766. if (item['actualLandingTime'] && !item['flightCanceled']) {
  767. const now = new Date()
  768. const actualLandingTime = new Date(item['actualLandingTime'].replace('T', ' '))
  769. if (now > actualLandingTime) {
  770. item['hasArrived'] = true
  771. } else {
  772. item['hasArrived'] = false
  773. }
  774. } else {
  775. item['hasArrived'] = false
  776. }
  777. const o1 = item['inTransferBaggageCount']
  778. const o2 = item['inTransferredBaggageCount']
  779. const out1 = o1 != undefined || o1 != null ? o1 : 0
  780. const out2 = o2 != undefined || o2 != null ? o2 : 0
  781. if (item['hasArrived'] && out1 - out2 > 0) {
  782. this.WarningData.forEach(p => {
  783. const startTime = this.formatTime(timeInZone((p.startDate ?? '').replace('T', ' '), this.timeZone), 2)
  784. const endTime = this.formatTime(timeInZone((p.endDate ?? '').replace('T', ' '), this.timeZone), 2)
  785. const planTime = this.formatTime(
  786. timeInZone((item.actualDepartureTime ?? '').replace('T', ' '), this.timeZone),
  787. 2
  788. )
  789. const capTime = Math.ceil((planTime - curTime) / (1000 * 60))
  790. if (Number(startTime) - Number(curTime) < 0 && Number(endTime) - Number(curTime) > 0) {
  791. const newItem = _.cloneDeep(item)
  792. if (p.flightNO != '' && p.flightNO == item.flightNO) {
  793. if (p.warningDuration && capTime - p.warningDuration < 0 && capTime - p.alarmDuration > 0) {
  794. item['warningState'] = 1
  795. const returnedTarget = Object.assign(newItem, p)
  796. this.sendLog(returnedTarget)
  797. }
  798. if (p.alarmDuration && capTime - p.alarmDuration < 0) {
  799. item['warningState'] = 2
  800. const returnedTarget = Object.assign(newItem, p)
  801. this.sendLog(returnedTarget)
  802. }
  803. } else if (p.flightNO == '' && p.IATACode != '') {
  804. if (item.flightNO.substring(0, 2) == p.IATACode) {
  805. if (p.warningDuration && capTime - p.warningDuration < 0 && capTime - p.alarmDuration > 0) {
  806. item['warningState'] = 1
  807. const returnedTarget = Object.assign(newItem, p)
  808. this.sendLog(returnedTarget)
  809. }
  810. if (p.alarmDuration && capTime - p.alarmDuration < 0) {
  811. item['warningState'] = 2
  812. const returnedTarget = Object.assign(newItem, p)
  813. this.sendLog(returnedTarget)
  814. }
  815. }
  816. }
  817. }
  818. })
  819. }
  820. this.baggageCount = this.baggageCount + Number(item.inTransferBaggageCount)
  821. })
  822. this.tableData = this._.sortBy(tableData, ['actualLandingTime', 'preFlightNO', 'actualDepartureTime', 'flightNO'])
  823. setTableFilters(this.tableData, this.tableDataFilters)
  824. this.toOrderNum(this.baggageCount)
  825. this.$nextTick(() => {
  826. this.setTableScroll()
  827. })
  828. },
  829. formatTime(date, type = 1) {
  830. let time = null
  831. if (type == 1) {
  832. time = parseTime(date, '{y}-{m}-{d} {h}:{i}:{s}')
  833. } else {
  834. time = date
  835. }
  836. const newTimt = new Date(time)
  837. return newTimt.getTime()
  838. },
  839. async sendLog(obj) {
  840. try {
  841. const newObj = {
  842. logTime: parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}'),
  843. logInfo: JSON.stringify(obj),
  844. flightNO: obj.flightNO,
  845. flightDate: obj.flightDate,
  846. luggageSN: '',
  847. strategyUseID: obj.alarmStrategyID,
  848. event: 1
  849. }
  850. await GeneralDataReception({
  851. serviceId: SERVICE_ID.departureScId,
  852. dataContent: JSON.stringify(newObj)
  853. })
  854. } catch (error) {
  855. this.$message.error('失败')
  856. }
  857. },
  858. setTableScroll() {
  859. this.arrivalCount = 0
  860. this.dealedTableData.forEach(row => {
  861. if (row['hasArrived']) {
  862. this.arrivalCount++
  863. }
  864. })
  865. if (!this.singleDay || this.hasSetTableScroll || this.arrivalCount === 0) {
  866. return
  867. }
  868. const table = this.$refs['table'].$el
  869. const scrollParent = table.querySelector('.el-table__body-wrapper')
  870. if (scrollParent.scrollHeight <= scrollParent.offsetHeight) {
  871. return
  872. }
  873. const lastRow = table.querySelectorAll('.el-table__body tr')[this.arrivalCount - 1]
  874. setTimeout(() => {
  875. const scrollMid = lastRow.offsetTop + lastRow.offsetHeight - scrollParent.offsetHeight / 2
  876. const scrollMax = scrollParent.scrollHeight - scrollParent.offsetHeight
  877. if (scrollMid > 0) {
  878. const scrollHeight = Math.min(scrollMid, scrollMax)
  879. scrollParent.scrollTo(0, scrollHeight)
  880. }
  881. }, 0)
  882. this.hasSetTableScroll = true
  883. },
  884. setNumberTransform() {
  885. const numberItems = this.$refs.numberItem // 拿到数字的ref,计算元素数量
  886. const numberArr = this.orderNum.filter(item => !isNaN(item))
  887. // 结合CSS 对数字字符进行滚动,显示订单数量
  888. for (let index = 0; index < numberItems.length; index++) {
  889. const elem = numberItems[index]
  890. elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`
  891. }
  892. },
  893. toOrderNum(num) {
  894. num = num.toString()
  895. if (num.length < 6) {
  896. num = '0' + num // 如未满八位数,添加"0"补位
  897. this.toOrderNum(num) // 递归添加"0"补位
  898. } else if (num.length >= 6) {
  899. this.orderNum = num.split('') // 将其便变成数据,渲染至滚动数组
  900. } else {
  901. // 订单总量数字超过八位显示异常
  902. this.$message.warning('总量数字过大')
  903. }
  904. this.setNumberTransform()
  905. },
  906. arraySpanMethod({ row, column, rowIndex, columnIndex }) {
  907. for (let i = 0; i < 7; i++) {
  908. if (columnIndex === i) {
  909. const _row = this.spanArr[rowIndex]
  910. const _col = _row > 0 ? 1 : 0
  911. return {
  912. rowspan: _row,
  913. colspan: _col
  914. }
  915. }
  916. }
  917. },
  918. exportHandler(refName, tableName) {
  919. if (this.loading) {
  920. return
  921. }
  922. const table = this.$refs[refName].$el.cloneNode(true)
  923. const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`
  924. exportToExcel(table, tableName, fileName, 2)
  925. }
  926. }
  927. }
  928. </script>
  929. <style
  930. lang="scss"
  931. scoped
  932. >
  933. .terminal-form-wrap {
  934. padding-top: 11px;
  935. padding-left: 5px;
  936. ::v-deep .form {
  937. display: flex;
  938. justify-content: space-between;
  939. .form-left {
  940. flex: 1;
  941. }
  942. .form-right {
  943. flex: 0 1 auto;
  944. }
  945. .el-form-item {
  946. margin-bottom: 0px;
  947. margin-right: 8px;
  948. button,
  949. input,
  950. optgroup,
  951. select,
  952. textarea {
  953. font-family: Helvetica, 'Microsoft YaHei';
  954. font-size: 14px;
  955. }
  956. .el-switch__label {
  957. color: #303133;
  958. }
  959. .el-form-item__error {
  960. z-index: 10;
  961. }
  962. }
  963. .btn-img {
  964. position: relative;
  965. top: 6px;
  966. }
  967. }
  968. .box-item {
  969. position: relative;
  970. height: 50px;
  971. font-size: 18px;
  972. line-height: 32px;
  973. text-align: center;
  974. list-style: none;
  975. color: #2d7cff;
  976. writing-mode: vertical-lr;
  977. text-orientation: upright;
  978. /*文字禁止编辑*/
  979. -moz-user-select: none; /*火狐*/
  980. -webkit-user-select: none; /*webkit浏览器*/
  981. -ms-user-select: none; /*IE10*/
  982. -khtml-user-select: none; /*早期浏览器*/
  983. user-select: none;
  984. /* overflow: hidden; */
  985. p {
  986. line-height: 32px;
  987. writing-mode: horizontal-tb !important;
  988. text-orientation: none !important;
  989. /*文字禁止编辑*/
  990. -moz-user-select: none; /*火狐*/
  991. -webkit-user-select: none; /*webkit浏览器*/
  992. -ms-user-select: none; /*IE10*/
  993. -khtml-user-select: none; /*早期浏览器*/
  994. user-select: none;
  995. margin-top: 5px;
  996. }
  997. }
  998. /* 默认逗号设置 */
  999. .mark-item {
  1000. width: 10px;
  1001. height: 32px;
  1002. margin-right: 5px;
  1003. line-height: 10px;
  1004. font-size: 18px;
  1005. position: relative;
  1006. & > span {
  1007. position: absolute;
  1008. width: 100%;
  1009. bottom: 0;
  1010. writing-mode: vertical-rl;
  1011. text-orientation: upright;
  1012. }
  1013. }
  1014. /*滚动数字设置*/
  1015. .number-item {
  1016. width: 41px;
  1017. height: 42px;
  1018. /* 背景图片 */
  1019. // background: url(/images/text-bg-blue.png) no-repeat center center;
  1020. // background-size: 100% 100%;
  1021. // background: #ccc;
  1022. list-style: none;
  1023. margin-right: 5px;
  1024. // background:rgba(250,250,250,1);
  1025. border-radius: 4px;
  1026. border: 3px solid rgb(221, 221, 221);
  1027. & > span {
  1028. position: relative;
  1029. display: inline-block;
  1030. margin-right: 10px;
  1031. width: 100%;
  1032. height: 100%;
  1033. writing-mode: vertical-rl;
  1034. text-orientation: upright;
  1035. overflow: hidden;
  1036. & > i {
  1037. font-style: normal;
  1038. position: absolute;
  1039. top: 11px;
  1040. left: 50%;
  1041. transform: translate(-50%, -1%);
  1042. transition: transform 1s ease-in-out;
  1043. letter-spacing: 10px;
  1044. }
  1045. }
  1046. }
  1047. .number-item:last-child {
  1048. margin-right: 0;
  1049. }
  1050. }
  1051. .terminal-table {
  1052. width: 100%;
  1053. ::v-deep .table {
  1054. width: 100%;
  1055. .cell {
  1056. padding: 0;
  1057. text-align: center;
  1058. font-size: 14px;
  1059. font-family: Helvetica, 'Microsoft YaHei';
  1060. letter-spacing: 0;
  1061. }
  1062. .cell-click {
  1063. cursor: pointer;
  1064. color: #2d7cff;
  1065. &.cell-clicked {
  1066. color: purple;
  1067. }
  1068. }
  1069. .el-table__header-wrapper,
  1070. .el-table__fixed-header-wrapper {
  1071. .cell {
  1072. font-weight: bold;
  1073. color: #101116;
  1074. }
  1075. .has-gutter {
  1076. tr {
  1077. .bgl-huang {
  1078. background: #fcf0b1;
  1079. }
  1080. }
  1081. }
  1082. }
  1083. .el-table__body-wrapper,
  1084. .el-table__fixed-body-wrapper {
  1085. tr.bgl-hui {
  1086. background: #d2d6df;
  1087. td {
  1088. background: #d2d6df;
  1089. }
  1090. &.redBorder {
  1091. position: relative;
  1092. &::after {
  1093. content: '';
  1094. position: absolute;
  1095. left: 0;
  1096. bottom: 0;
  1097. width: 100%;
  1098. height: 2px;
  1099. background: #e83f82;
  1100. }
  1101. }
  1102. }
  1103. }
  1104. td.cell-toUnload {
  1105. background: lightcoral !important;
  1106. position: relative;
  1107. &::after {
  1108. content: '';
  1109. display: block;
  1110. width: 100%;
  1111. height: 100%;
  1112. position: absolute;
  1113. top: 0;
  1114. left: 0;
  1115. border: 2px dashed red;
  1116. }
  1117. }
  1118. td.cell-toUnloadNew {
  1119. background: #fcf0b1 !important;
  1120. position: relative;
  1121. &::after {
  1122. content: '';
  1123. display: block;
  1124. width: 100%;
  1125. height: 100%;
  1126. position: absolute;
  1127. top: 0;
  1128. left: 0;
  1129. border: 2px dashed #e28913;
  1130. }
  1131. }
  1132. .el-table__cell.is-hidden > * {
  1133. visibility: visible;
  1134. }
  1135. }
  1136. }
  1137. </style>