index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-05-07 16:59:57
  5. * @LastEditors: your name
  6. * @Description: 进港01
  7. -->
  8. <template>
  9. <div class="arrival-one">
  10. <!--功能区-表单-->
  11. <div class="arrival-form">
  12. <el-form
  13. ref="form"
  14. :inline="true"
  15. :model="formData"
  16. :rules="rules"
  17. class="form"
  18. >
  19. <el-form-item prop="currentAirport">
  20. <el-cascader
  21. v-model="formData.currentAirport"
  22. style="width:144px;"
  23. placeholder="全部机场"
  24. size="small"
  25. :options="currentAirportList"
  26. :props="currentAirportProps"
  27. collapse-tags
  28. clearable
  29. filterable
  30. @change="setCurrentAirport"
  31. />
  32. </el-form-item>
  33. <el-form-item prop="relatedAirport">
  34. <el-cascader
  35. v-model="formData.relatedAirport"
  36. style="width:136px;"
  37. size="small"
  38. :options="relatedAirportList"
  39. :props="relatedAirportProps"
  40. placeholder="全部起飞站"
  41. collapse-tags
  42. clearable
  43. filterable
  44. @change="onSubmit"
  45. />
  46. </el-form-item>
  47. <el-form-item prop="inboundCarrier">
  48. <el-cascader
  49. v-model="formData.inboundCarrier"
  50. style="width:164px;"
  51. size="small"
  52. :options="carrierList"
  53. :props="carrierProps"
  54. placeholder="全部航司"
  55. collapse-tags
  56. clearable
  57. filterable
  58. @change="onSubmit"
  59. />
  60. </el-form-item>
  61. <el-form-item prop="craftType">
  62. <el-cascader
  63. v-model="formData.craftType"
  64. style="width:120px;"
  65. size="small"
  66. :options="craftTypeList"
  67. :props="craftTypeProps"
  68. placeholder="全部机型"
  69. collapse-tags
  70. clearable
  71. filterable
  72. @change="onSubmit"
  73. />
  74. </el-form-item>
  75. <el-form-item prop="flightAttr">
  76. <el-cascader
  77. v-model="formData.flightAttr"
  78. style="width:120px;"
  79. size="small"
  80. :options="flightAttrList"
  81. :props="flightAttrProps"
  82. placeholder="国际/国内"
  83. collapse-tags
  84. clearable
  85. filterable
  86. @change="onSubmit"
  87. />
  88. </el-form-item>
  89. <el-form-item prop="startDate">
  90. <el-date-picker
  91. v-model="formData.startDate"
  92. style="width:216px;"
  93. size="small"
  94. type="date"
  95. value-format="yyyy-MM-dd"
  96. placeholder="开始时间"
  97. @change="setStartDate"
  98. />
  99. </el-form-item>
  100. <el-form-item prop="endDate">
  101. <el-date-picker
  102. v-model="formData.endDate"
  103. style="width:216px;"
  104. size="small"
  105. type="date"
  106. value-format="yyyy-MM-dd"
  107. placeholder="结束时间"
  108. @change="setEndDate"
  109. />
  110. </el-form-item>
  111. <el-form-item prop="search">
  112. <el-input
  113. v-model="formData.search"
  114. style="width:240px;margin-left:105px;"
  115. size="small"
  116. placeholder="请输入内容"
  117. prefix-icon="el-icon-search"
  118. clearable
  119. @clear="inputClear"
  120. />
  121. </el-form-item>
  122. <el-form-item>
  123. <el-button
  124. size="small"
  125. type="primary"
  126. @click="onSubmit"
  127. >搜索</el-button>
  128. </el-form-item>
  129. <el-form-item v-is="['i_showTransit']">
  130. <el-switch
  131. v-model="formData.switch"
  132. style="margin-left:40px;"
  133. active-text="显示中转"
  134. />
  135. </el-form-item>
  136. <el-form-item v-is="['i_timeIcon']">
  137. <el-dropdown>
  138. <img
  139. class="checkTime msgImg"
  140. src="../../../../assets/departure/ic_time.png"
  141. >
  142. <el-dropdown-menu
  143. slot="dropdown"
  144. class="time-zone"
  145. >
  146. <el-dropdown-item>国内Local/国际UTC</el-dropdown-item>
  147. <el-dropdown-item>Local</el-dropdown-item>
  148. <el-dropdown-item>UTC</el-dropdown-item>
  149. </el-dropdown-menu>
  150. </el-dropdown>
  151. </el-form-item>
  152. <!-- <el-form-item v-is="['i_columnSettings']"> -->
  153. <el-form-item>
  154. <img
  155. class="msgImg"
  156. src="../../../../assets/departure/ic_setting.png"
  157. @click="show"
  158. >
  159. </el-form-item>
  160. </el-form>
  161. </div>
  162. <!--表格-->
  163. <div
  164. v-loading="loading"
  165. class="arrival-table"
  166. element-loading-text="拼命加载中"
  167. element-loading-spinner="el-icon-loading"
  168. element-loading-background="rgba(0, 0, 0, 0.8)"
  169. >
  170. <el-table
  171. ref="table"
  172. :row-class-name="tableRowClassName"
  173. :data="tableData"
  174. class="table"
  175. :height="computedTableHeight"
  176. show-summary
  177. :summary-method="summaryMethod"
  178. border
  179. stripe
  180. @row-click="rowClick"
  181. >
  182. <el-table-column
  183. v-for="(item,index) in tableColsCopy"
  184. :key="index"
  185. :prop="item.statCode"
  186. :label="item.statName"
  187. >
  188. <el-table-column
  189. v-for="(p,i) in item.children"
  190. :key="i"
  191. :prop="p.statCode"
  192. :label="p.statName"
  193. :width="item.width"
  194. :formatter="tableFormat"
  195. />
  196. </el-table-column>
  197. </el-table>
  198. </div>
  199. <!--列设置-->
  200. <Dialog
  201. :flag="dialogFlag"
  202. class="dialog-check-cols"
  203. >
  204. <div class="col-dialog">
  205. <div class="title">列设置</div>
  206. <div class="content">
  207. <el-tree
  208. :data="tableCols"
  209. :class="colsCheckClass"
  210. show-checkbox
  211. node-key="index"
  212. :default-expand-all="true"
  213. :props="{
  214. label: 'statName',
  215. children: 'children'
  216. }"
  217. :default-checked-keys="checkedKeysTemp"
  218. @check="handleCheck"
  219. />
  220. </div>
  221. <div class="foot right t30">
  222. <el-button
  223. size="medium"
  224. class="r24"
  225. type="primary"
  226. @click="onCheck"
  227. >确定</el-button>
  228. <el-button
  229. size="medium"
  230. @click="hide"
  231. >取消</el-button>
  232. </div>
  233. </div>
  234. </Dialog>
  235. </div>
  236. </template>
  237. <script>
  238. import Dialog from '@/layout/components/Dialog'
  239. import terminalMixin from '../../mixins/terminal'
  240. import formMixin from '../../mixins/form'
  241. import tableColsMixin from '../../mixins/tableCols'
  242. export default {
  243. name: 'ArrivalTerminalView',
  244. components: { Dialog },
  245. mixins: [terminalMixin, formMixin, tableColsMixin],
  246. data() {
  247. return {
  248. // 初始表头
  249. tableCols: [
  250. {
  251. statCode: 'flightInfo',
  252. statName: '航班信息',
  253. children: [
  254. {
  255. statCode: 'FlightNO',
  256. statName: '航班号',
  257. width: 91
  258. },
  259. {
  260. statCode: 'FlightDate',
  261. statName: '执飞日期',
  262. width: 105
  263. },
  264. {
  265. statCode: 'PlanLandingTime',
  266. statName: '到港时间',
  267. width: 115
  268. },
  269. {
  270. statCode: 'PlanDepartureApt',
  271. statName: '起飞航站',
  272. width: 71
  273. },
  274. {
  275. statCode: 'LandingBuild',
  276. statName: '到达航站楼',
  277. width: 65
  278. },
  279. {
  280. statCode: 'Carousel',
  281. statName: '行李转盘',
  282. width: 68
  283. },
  284. {
  285. statCode: 'StandForLanding',
  286. statName: '停机位',
  287. width: 68
  288. }
  289. ]
  290. },
  291. {
  292. statCode: 'depatureInfo',
  293. statName: '始飞站行李信息',
  294. children: [
  295. {
  296. statCode: 'checkin',
  297. statName: '值机',
  298. width: 72
  299. },
  300. {
  301. statCode: 'expect_load',
  302. statName: '预计装载',
  303. width: 101
  304. },
  305. {
  306. statCode: 'loadflight',
  307. statName: '已装载',
  308. width: 65
  309. }
  310. ]
  311. },
  312. {
  313. statCode: 'arriveInfo',
  314. statName: '到达行李信息',
  315. children: [
  316. {
  317. statCode: 'reach',
  318. statName: '到达',
  319. width: 88
  320. },
  321. {
  322. statCode: 'did_not_arrive',
  323. statName: '未到达',
  324. width: 76
  325. },
  326. {
  327. statCode: 'special',
  328. statName: '特殊',
  329. width: 88
  330. },
  331. {
  332. statCode: 'claim',
  333. statName: '理赔',
  334. width: 83
  335. }
  336. ]
  337. },
  338. {
  339. statCode: 'uninstallInfo',
  340. statName: '卸载状态',
  341. children: [
  342. {
  343. statCode: 'uninstalled',
  344. statName: '已卸载',
  345. width: 83
  346. },
  347. {
  348. statCode: 'to_be_uninstalled',
  349. statName: '待卸载',
  350. width: 80
  351. }
  352. ]
  353. },
  354. {
  355. statCode: 'stopBaggage',
  356. statName: '终止行李',
  357. children: [
  358. {
  359. statCode: 'terminateArrive',
  360. statName: '到达',
  361. width: 79
  362. },
  363. {
  364. statCode: 'terminatedNotArrived',
  365. statName: '未到达',
  366. width: 82
  367. }
  368. ]
  369. },
  370. {
  371. statCode: 'TransferBaggage',
  372. statName: '转运行李',
  373. children: [
  374. {
  375. statCode: 'delivered',
  376. statName: '已交运',
  377. width: 89
  378. },
  379. {
  380. statCode: 'not_shipped',
  381. statName: '未交运',
  382. width: 89
  383. }
  384. ]
  385. },
  386. {
  387. statCode: 'disBaggage',
  388. statName: '行李分布',
  389. children: [
  390. {
  391. statCode: 'container',
  392. statName: '容器',
  393. width: 97
  394. },
  395. {
  396. statCode: 'bulk',
  397. statName: '散装',
  398. width: 101
  399. }
  400. ]
  401. }
  402. ]
  403. }
  404. },
  405. methods: {
  406. tableRowClassName({ row, rowIndex }) {
  407. if (rowIndex < 2) {
  408. return 'bgl-hui'
  409. }
  410. },
  411. // 获取表单下拉框数据
  412. getFormData(params) {
  413. this.relatedAirportQuery({
  414. ...params,
  415. type: 'IN'
  416. })
  417. this.inboundCarrierQuery(params)
  418. this.craftTypeQuery(params)
  419. this.flightAttrQuery(params)
  420. },
  421. // 获取表格数据
  422. getTableData(params) {
  423. this.integratedQuery({
  424. ...params,
  425. type: 'IN'
  426. })
  427. },
  428. initTableData(tableData) {
  429. this.tableData = this._.sortBy(tableData, ['FlightDate', 'PlanLandingTime'])
  430. }
  431. }
  432. }
  433. </script>
  434. <style lang="scss" scoped>
  435. .arrival-form {
  436. padding-top: 11px;
  437. ::v-deep .form {
  438. .el-form-item {
  439. margin-bottom: 0px;
  440. margin-right: 8px;
  441. button,
  442. input,
  443. optgroup,
  444. select,
  445. textarea {
  446. font-family: Helvetica, 'Microsoft YaHei';
  447. font-size: 14px;
  448. }
  449. .el-switch__label {
  450. color: #303133;
  451. }
  452. .el-form-item__error {
  453. z-index: 10;
  454. }
  455. }
  456. .checkTime {
  457. margin: 0 16px;
  458. }
  459. .msgImg {
  460. cursor: pointer;
  461. position: relative;
  462. top: 6px;
  463. }
  464. }
  465. }
  466. .arrival-table {
  467. width: calc(100vw - 60px);
  468. ::v-deep .table {
  469. width: 100%;
  470. .cell {
  471. padding: 0;
  472. text-align: center;
  473. font-family: Helvetica, 'Microsoft YaHei';
  474. font-size: 14px;
  475. letter-spacing: 0;
  476. }
  477. .el-table__header-wrapper {
  478. .cell {
  479. font-weight: bold;
  480. color: #101116;
  481. }
  482. .has-gutter {
  483. tr {
  484. .bgl-huang {
  485. background: #fcf0b1;
  486. }
  487. }
  488. }
  489. }
  490. .el-table__body-wrapper {
  491. tr.bgl-hui {
  492. background: #d2d6df;
  493. td {
  494. background: #d2d6df;
  495. }
  496. &:nth-child(5) {
  497. position: relative;
  498. &::after {
  499. content: '';
  500. position: absolute;
  501. left: 0;
  502. bottom: 0;
  503. width: 100%;
  504. height: 2px;
  505. background: #e83f82;
  506. }
  507. }
  508. }
  509. }
  510. }
  511. }
  512. </style>