index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994
  1. <!--
  2. * @Author: your name
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-06-30 09:46:18
  5. * @LastEditors: your name
  6. * @Description: 行李视图
  7. -->
  8. <template>
  9. <div class="baggage-view">
  10. <div
  11. ref="basicInfo"
  12. class="part1"
  13. >
  14. <div class="title">
  15. <span>行李基本信息</span>
  16. <el-radio-group
  17. v-model="infoBtn"
  18. class="radioBtn"
  19. size="mini"
  20. fill="#FFFFFF"
  21. text-color="#28344D"
  22. >
  23. <el-radio-button
  24. v-for="item in infoRadios"
  25. :key="item"
  26. :label="item"
  27. />
  28. </el-radio-group>
  29. </div>
  30. <div class="part1_info">
  31. <el-row :gutter="12">
  32. <el-col
  33. v-for="(item, index) in baggageBasicInfoCols"
  34. :key="index"
  35. :xl="[1, 4, 5].includes(index % 7) ? 4 : 3"
  36. :sm="6"
  37. :xs="6"
  38. >
  39. <span class="label">{{ item.label }}:</span><span
  40. class="content"
  41. :title="formattedBaggageInfo(item.prop)"
  42. >{{ formattedBaggageInfo(item.prop) }}</span>
  43. </el-col>
  44. </el-row>
  45. </div>
  46. </div>
  47. <div
  48. v-show="infoBtn === infoRadios[0]"
  49. class="part2"
  50. >
  51. <div class="part2_info">
  52. <div
  53. style="width: 120px"
  54. class="title"
  55. >行李跟踪信息</div>
  56. <div class="type normal">
  57. {{ baggageBasicInfo.BagStatus }}
  58. </div>
  59. <div class="step">
  60. <div class="baggage-track-chart">
  61. <div class="stepLine">
  62. <div
  63. :style="{ width: lineWidth }"
  64. class="stepLineBlue"
  65. />
  66. </div>
  67. <!-- <el-popover
  68. v-for="(item, index) in stepData"
  69. :key="index"
  70. :ref="'popover' + index"
  71. :value="popoverVisible(item)"
  72. :open-delay="500"
  73. placement="left-end"
  74. popper-class="popover-dark"
  75. trigger="manual"
  76. >
  77. <div class="pre-line">{{ messageTooltip(item.resourceFile) }}</div>
  78. <div
  79. slot="reference"
  80. :class="{ 'stepItem': true, activeItem: item.DealTime }"
  81. @mouseenter="itemMouseEnterHandler(item)"
  82. @mouseleave="itemMouseLeaveHandler(item)"
  83. >
  84. <span class="head">
  85. <span>{{ item.NodeNameEN }}</span>
  86. </span>
  87. <span>{{ item.DealTime }}</span>
  88. </div>
  89. </el-popover> -->
  90. <div
  91. v-for="(item, index) in stepData"
  92. :key="index"
  93. :class="{ 'stepItem': true, activeItem: item.DealTime }"
  94. @mouseenter="itemMouseEnterHandler(item)"
  95. @mouseleave="itemMouseLeaveHandler(item)"
  96. >
  97. <span class="head">
  98. <!-- {{ item.airPort }} -->
  99. <!-- <span v-if="item.airPort && item.nodeName !== ''">-</span> -->
  100. <span>{{ item.NodeNameEN }}</span>
  101. </span>
  102. <span>{{ item.DealTime }}</span>
  103. <!-- <span>{{ item.time }}</span> -->
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. <div class="btns">
  109. <img
  110. class="btn-square btn-shadow"
  111. src="../../../../assets/baggage/ic_export.png"
  112. >
  113. <img
  114. class="btn-square btn-shadow"
  115. src="../../../../assets/baggage/ic_setting.png"
  116. @click="show"
  117. >
  118. </div>
  119. </div>
  120. <div
  121. v-show="infoBtn == infoRadios[0]"
  122. class="part3"
  123. :style="{
  124. 'height': `calc(100vh - 80px - ${basicInfoHeight}px - 128px - 3 * 8px - 44px)`
  125. }"
  126. >
  127. <!-- <el-popover
  128. trigger="hover"
  129. placement="top-start"
  130. popper-class="popover-dark"
  131. :visible-arrow="false"
  132. :disabled="!messageTooltipVisible"
  133. >
  134. <div class="pre-line">{{ messageTooltip }}</div> -->
  135. <el-table
  136. ref="table"
  137. :data="baggageTableData"
  138. :height="`calc(100vh - 80px - ${basicInfoHeight}px - 128px - 3 * 8px - 44px)`"
  139. size="mini"
  140. border
  141. fit
  142. :header-cell-class-name="headerCellClass"
  143. :header-cell-style="{ color: '#101116' }"
  144. :cell-class-name="cellClass"
  145. :span-method="tableSpanMethod"
  146. @cell-mouse-enter="cellMouseEnterHandler"
  147. @cell-mouse-leave="cellMouseLeaveHandler"
  148. @cell-click="cellClickHandler"
  149. >
  150. <el-table-column
  151. v-for="item in tableColsCopy"
  152. :key="item.index"
  153. :prop="item.prop"
  154. :label="item.name"
  155. :align="item.align || 'center'"
  156. :width="item.width"
  157. show-overflow-tooltip
  158. >
  159. <template slot="header">
  160. <div class="cell-content">{{ item.name }}</div>
  161. </template>
  162. <template slot-scope="scope">
  163. <div class="cell-content">{{ scope.row[item.prop] }}</div>
  164. </template>
  165. </el-table-column>
  166. </el-table>
  167. <!-- </el-popover> -->
  168. </div>
  169. <div
  170. v-show="infoBtn === infoRadios[1]"
  171. class="part4"
  172. :style="{
  173. 'height': `calc(100vh - 80px - ${basicInfoHeight}px - 2 * 8px - 44px)`
  174. }"
  175. >
  176. <header class="head">
  177. <div class="title">行李跟踪信息</div>
  178. <div class="btns">
  179. <!-- <img
  180. class="btn-square"
  181. src="../../../../assets/baggage/ic_export.png"
  182. >
  183. <img
  184. class="btn-square"
  185. src="../../../../assets/baggage/ic_setting.png"
  186. @click="show"
  187. > -->
  188. </div>
  189. </header>
  190. <main class="main">
  191. <template v-if="messageList.length">
  192. <el-row
  193. :gutter="24"
  194. type="flex"
  195. >
  196. <el-col
  197. v-for="(message, index) in messageList"
  198. :key="index"
  199. :span="6"
  200. >
  201. <div class="card">
  202. <div class="message-date">{{ message.date + ' UTC' }}</div>
  203. <div class="message-content">
  204. {{ message.dataContent.replaceAll(/[\r\n]{2,}/g, '\n') }}
  205. <!-- BSM <br>
  206. .V/1LHRB <br>
  207. .F/XX1640/08APR/PEK/Y <br>
  208. .O/ZZ941/08APR/DXB/E <br>
  209. .N/0666826758001 <br>
  210. .D/SELF//08APR/110023L//PEK30113 <br>
  211. .S/N/32L/C/030//Y/I <br>
  212. .W/K/l/0 <br>
  213. .P/1CUI/DI ENDBSM<br> -->
  214. </div>
  215. </div>
  216. </el-col>
  217. </el-row>
  218. </template>
  219. <template v-else>
  220. <el-empty
  221. :image-size="1"
  222. description="暂无数据"
  223. />
  224. </template>
  225. </main>
  226. </div>
  227. <!--列设置-->
  228. <Dialog
  229. :flag="dialogFlag"
  230. class="dialog-check-cols"
  231. >
  232. <div class="col-dialog">
  233. <div class="title">列设置</div>
  234. <div class="content">
  235. <el-tree
  236. :data="tableCols"
  237. :class="colsCheckClass"
  238. show-checkbox
  239. node-key="index"
  240. :default-expand-all="true"
  241. :props="{
  242. label: 'name',
  243. children: 'children',
  244. }"
  245. :default-checked-keys="checkedKeysTemp"
  246. @check="handleCheck"
  247. />
  248. </div>
  249. <div class="foot right t30">
  250. <el-button
  251. size="medium"
  252. class="r24"
  253. type="primary"
  254. @click="onCheck"
  255. >确定</el-button>
  256. <el-button
  257. size="medium"
  258. @click="hide"
  259. >取消</el-button>
  260. </div>
  261. </div>
  262. </Dialog>
  263. </div>
  264. </template>
  265. <script>
  266. import Dialog from '@/layout/components/Dialog/index.vue'
  267. import { queryMap, myQuery } from '@/api/dataIntegration'
  268. import tableColsMixin from '../../mixins/tableCols'
  269. export default {
  270. name: 'BaggageView',
  271. components: {
  272. Dialog
  273. },
  274. mixins: [tableColsMixin],
  275. data() {
  276. return {
  277. departureAirport: '',
  278. landingAirport: '',
  279. queryData: {},
  280. basicInfoHeight: 0,
  281. baggageBasicInfoCols: [
  282. {
  283. label: '行李牌号',
  284. prop: 'bagNo'
  285. },
  286. {
  287. label: '航班号',
  288. prop: 'FlightNO'
  289. },
  290. {
  291. label: '企业或团队名称',
  292. prop: 'teamOrGroup'
  293. },
  294. {
  295. label: '值机位置',
  296. prop: 'checkInLocation'
  297. },
  298. {
  299. label: '特殊行李类型',
  300. prop: 'specialType'
  301. },
  302. {
  303. label: 'PNR编号',
  304. prop: 'PNR'
  305. },
  306. {
  307. label: '旅客姓名大写拼音',
  308. prop: 'name'
  309. },
  310. {
  311. label: '装载序列号',
  312. prop: 'loadSequenceIndex'
  313. },
  314. {
  315. label: '总件数',
  316. prop: 'totalNumber'
  317. },
  318. {
  319. label: '总重量',
  320. prop: 'totalWeight'
  321. },
  322. {
  323. label: '尺寸',
  324. prop: 'size'
  325. },
  326. {
  327. label: '外部特征描述',
  328. prop: 'externalCharacterization'
  329. },
  330. {
  331. label: '常旅客号',
  332. prop: 'frequentFlyerNumber'
  333. },
  334. {
  335. label: '常旅客级别',
  336. prop: 'frequentFlyerClass'
  337. },
  338. {
  339. label: '是否取消值机',
  340. prop: 'whetherToCancelTheCheckIn'
  341. },
  342. {
  343. label: '是否可装载',
  344. prop: 'isItLoadable'
  345. },
  346. {
  347. label: '是否可运输',
  348. prop: 'isItTransportable'
  349. },
  350. {
  351. label: '行李激活状态',
  352. prop: 'activeState'
  353. },
  354. {
  355. label: '无BSM状态',
  356. prop: 'noBSM'
  357. },
  358. {
  359. label: '中转标记',
  360. prop: 'transitSign'
  361. },
  362. {
  363. label: '速运标记',
  364. prop: 'expressSign'
  365. },
  366. {
  367. label: '破损标记',
  368. prop: 'brokenSign'
  369. },
  370. {
  371. label: '投诉标记',
  372. prop: 'complaintSign'
  373. },
  374. {
  375. label: '赔偿标记',
  376. prop: 'compensationSign'
  377. },
  378. {
  379. label: '异常状态',
  380. prop: 'bagExcType'
  381. }
  382. ],
  383. baggageBasicInfo: {},
  384. dialogVisibledele: false,
  385. active: 2,
  386. infoBtn: '跟踪信息',
  387. infoRadios: ['跟踪信息', '跟踪报文'],
  388. messageList: [
  389. // {
  390. // content: `BSM
  391. // .V/1LHRB
  392. // .F/XX1640/08APR/PEK/Y
  393. // .O/ZZ941/08APR/DXB/E
  394. // .N/0666826758001
  395. // .D/SELF//08APR/110023L//PEK30113
  396. // .S/N/32L/C/030//Y/I
  397. // .W/K/l/0
  398. // .P/1CUI/DI ENDBSM`,
  399. // date: '2022-04-25 12:42:38:00'
  400. // }
  401. ],
  402. // messageTooltipList: [],
  403. checkList: [],
  404. stepData: new Array(9).fill({}),
  405. tableCols: [
  406. {
  407. name: '航班号',
  408. prop: 'flightNo'
  409. },
  410. { name: '航班日期', prop: 'flightDate', width: 100 },
  411. {
  412. name: '起飞航站\n预计起飞时间',
  413. prop: 'departureAirport',
  414. width: 111
  415. },
  416. {
  417. name: '目的航站\n预计降落时间',
  418. prop: 'landingAirport',
  419. sortable: 'custom',
  420. width: 111
  421. },
  422. { name: '旅客仓位', prop: 'passengerCompartment', width: 70 },
  423. { name: '旅客座位号', prop: 'passengerSeatNumber' },
  424. { name: '值机序号', prop: 'passengerCheckInNumber', width: 70 },
  425. { name: '节点标识', prop: 'nodeCode', width: 100 },
  426. { name: '节点名称', prop: 'nodeName' },
  427. { name: '位置标识', prop: 'locationCode' },
  428. // { name: '位置码', prop: '', },
  429. { name: '位置描述', prop: 'locationRemark' },
  430. { name: '读取时间', prop: 'dealTime', width: 158 },
  431. { name: '结果', prop: 'status' },
  432. { name: '次级代码', prop: 'secondaryCode', width: 70 },
  433. { name: '操作人', prop: 'AgentCode', width: 100 },
  434. { name: '设备ID', prop: 'DeviceCode' },
  435. { name: '发往位置', prop: 'toLocation' },
  436. { name: '发往位置描述', prop: 'toLocationMark', width: 110 },
  437. { name: '装载序号', prop: 'LoadSN' },
  438. { name: '容器编号', prop: 'U_Device_ID', width: 100 }
  439. ],
  440. baggageTableData: [],
  441. spanArr: [],
  442. pos: 0,
  443. hoveredRow: null,
  444. loopEvent: null,
  445. queryMessageLoop: null
  446. }
  447. },
  448. computed: {
  449. lineWidth() {
  450. for (let i = this.stepData.length - 1; i > -1; i--) {
  451. if (this.stepData[i].DealTime) {
  452. return (i * 100) / (this.stepData.length - 1) + '%'
  453. }
  454. }
  455. return 0
  456. },
  457. // messageTooltip() {
  458. // return function (resourceFile) {
  459. // const message = this.messageTooltipList.find(message => message.resourceFile === resourceFile)
  460. // return message ? `${message.date}\n${message.dataContent.replaceAll(/[\r\n]{2,}/g, '\n')}` : ''
  461. // }
  462. // },
  463. // popoverVisible() {
  464. // return function (item) {
  465. // return (
  466. // (item.hover || item.tableHover) &&
  467. // this.messageTooltipList.some(message => message.resourceFile === item.resourceFile)
  468. // )
  469. // }
  470. // },
  471. formattedBaggageInfo() {
  472. return function (prop) {
  473. const value = this.baggageBasicInfo[prop]
  474. if ((value ?? '') === '') {
  475. return ''
  476. } else if (prop === 'transitSign') {
  477. return Number(value) === 1 ? '中转' : '非中转'
  478. } else if (
  479. [
  480. 'whetherToCancelTheCheckIn',
  481. 'isItLoadable',
  482. 'isItTransportable',
  483. 'activeState',
  484. 'noBSM',
  485. 'expressSign',
  486. 'brokenSign',
  487. 'complaintSign',
  488. 'compensationSign',
  489. 'bagExcType'
  490. ].includes(prop)
  491. ) {
  492. return Number(value) === 1 || String(value) === 'Y' ? '是' : '否'
  493. } else {
  494. return value
  495. }
  496. }
  497. }
  498. },
  499. watch: {
  500. infoBtn(val) {
  501. const that = this
  502. if (val === '跟踪报文') {
  503. clearInterval(this.loopEvent)
  504. this.loopEvent = null
  505. this.baggageMessageQuery()
  506. this.queryMessageLoop = setInterval(function () {
  507. that.baggageMessageQuery()
  508. }, 5000)
  509. } else {
  510. clearInterval(this.queryMessageLoop)
  511. this.queryMessageLoop = null
  512. this.queryBaggageAll()
  513. this.loopEvent = setInterval(function () {
  514. that.queryBaggageAll()
  515. }, 3000)
  516. }
  517. },
  518. hoveredRow: {
  519. handler(row) {
  520. this.stepData.forEach(item => {
  521. item.tableHover = row && item.resourceFile === row.resourceFile
  522. })
  523. },
  524. deep: true
  525. }
  526. },
  527. mounted() {
  528. this.queryData = this._.cloneDeep(this.$route.query)
  529. // console.log(this.queryData)
  530. const that = this
  531. this.queryBaggageAll()
  532. this.loopEvent = setInterval(function () {
  533. that.queryBaggageAll()
  534. }, 3000)
  535. },
  536. updated() {
  537. this.basicInfoHeight = this.$refs['basicInfo'].offsetHeight
  538. this.$refs['table']?.doLayout()
  539. },
  540. beforeDestroy() {
  541. clearInterval(this.loopEvent)
  542. this.loopEvent = null
  543. clearInterval(this.queryMessageLoop)
  544. this.queryMessageLoop = null
  545. },
  546. methods: {
  547. // objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  548. // if (columnIndex < 4) {
  549. // const _row = this.spanArr[rowIndex]
  550. // const _col = _row > 0 ? 1 : 0
  551. // return {
  552. // rowspan: _row,
  553. // colspan: _col
  554. // }
  555. // }
  556. // },
  557. initTableData(tableData) {
  558. const spanArr = []
  559. let pos = 0
  560. for (let i = 0; i < tableData.length; i++) {
  561. if (i === 0) {
  562. spanArr.push(1)
  563. } else {
  564. if (
  565. tableData[i]['flightNo'] === tableData[i - 1]['flightNo'] &&
  566. tableData[i]['flightDate'] === tableData[i - 1]['flightDate'] &&
  567. tableData[i]['departureAirport'] === tableData[i - 1]['departureAirport'] &&
  568. tableData[i]['landingAirport'] === tableData[i - 1]['landingAirport']
  569. ) {
  570. spanArr[pos] += 1
  571. spanArr.push(0)
  572. } else {
  573. spanArr.push(1)
  574. pos = i
  575. }
  576. }
  577. }
  578. this.spanArr = spanArr
  579. this.pos = pos
  580. },
  581. headerCellClass({ row, column, rowIndex, columnIndex }) {
  582. if (['departureAirport', 'landingAirport'].includes(column.property)) {
  583. return 'pre-line'
  584. }
  585. },
  586. cellClass({ row, column, rowIndex, columnIndex }) {
  587. const classes = []
  588. if (column.property === 'flightNo') {
  589. classes.push('cell-click')
  590. }
  591. if (['departureAirport', 'landingAirport'].includes(column.property)) {
  592. classes.push('pre-line')
  593. }
  594. return classes.join(' ')
  595. },
  596. cellClickHandler(row, column, cell, event) {
  597. switch (column.property) {
  598. case 'flightNo':
  599. this.$router.push({
  600. path: `/${this.$route.path.split('/').slice(1, -1).join('/')}/flightView`,
  601. query: {
  602. FlightNO: row.flightNo,
  603. FlightDate: row.flightDate
  604. }
  605. })
  606. break
  607. default:
  608. break
  609. }
  610. },
  611. tableSpanMethod({ row, column, rowIndex, columnIndex }) {
  612. if (['flightNo', 'flightDate', 'departureAirport', 'landingAirport'].includes(column['property'])) {
  613. const _row = this.spanArr[rowIndex]
  614. const _col = _row > 0 ? 1 : 0
  615. return {
  616. rowspan: _row,
  617. colspan: _col
  618. }
  619. }
  620. },
  621. itemMouseEnterHandler(item) {
  622. if (item.resourceFile) {
  623. // this.checkBaggageMessage(item.resourceFile)
  624. item.hover = true
  625. }
  626. },
  627. itemMouseLeaveHandler(item) {
  628. item.hover = false
  629. },
  630. cellMouseEnterHandler(row, column, cell, event) {
  631. // if (row?.resourceFile) {
  632. // this.checkBaggageMessage(row.resourceFile)
  633. // }
  634. this.hoveredRow = row
  635. },
  636. cellMouseLeaveHandler() {
  637. // this.hoveredRow = null
  638. },
  639. async checkBaggageMessage(resourceFile) {
  640. if (!this.messageTooltipList.some(message => message.resourceFile === resourceFile)) {
  641. const result = await this.queryMessage([resourceFile])
  642. this.messageTooltipList.push({
  643. ...result[0],
  644. resourceFile
  645. })
  646. }
  647. },
  648. // 行李详情基础信息
  649. queryBaggageBasicInfo(dataContent) {
  650. return myQuery(queryMap.baggageBasicInfoByID, ...dataContent)
  651. },
  652. // 行李详情追踪链
  653. queryBaggageTrack(dataContent) {
  654. return myQuery(queryMap.baggageTrackByID, ...dataContent)
  655. },
  656. // 行李详情表格
  657. queryBaggageDetails(dataContent) {
  658. return myQuery(queryMap.baggageDetailsByID, ...dataContent)
  659. },
  660. // 原始报文
  661. queryMessage(dataContent) {
  662. return myQuery(queryMap.message, ...dataContent)
  663. },
  664. async queryBaggageAll(queryData = this.queryData) {
  665. const { FlightNO, FlightDate, BagSN } = queryData
  666. const dataContent = [FlightNO, FlightDate, BagSN]
  667. try {
  668. const [
  669. baggageBasicInfo,
  670. // baggageTrack,
  671. baggageDetails
  672. ] = await Promise.all([
  673. this.queryBaggageBasicInfo(dataContent),
  674. // this.queryBaggageTrack(new Array(2).fill(dataContent).flat()),
  675. this.queryBaggageDetails(new Array(6).fill(dataContent).flat())
  676. ])
  677. if (baggageBasicInfo.length) {
  678. baggageBasicInfo[0].FlightNO = FlightNO
  679. this.baggageBasicInfo = baggageBasicInfo[0]
  680. }
  681. this.baggageTableData = baggageDetails.map((item, index) => {
  682. const { hover, tableHover } = this.stepData[index] ?? {}
  683. this.stepData.splice(index, 1, {
  684. NodeNameEN: item.nodeCode,
  685. DealTime: item.dealTime.replace('T', '\n'),
  686. resourceFile: item.resourceFile,
  687. hover: !!hover,
  688. tableHover: !!tableHover
  689. })
  690. if (item['dealTime'].split('T').length > 1) {
  691. item['dealTime'] = item['dealTime'].replace('T', ' ')
  692. }
  693. item['departureAirport'] = `${item['departureAirport']}\n${item['departureTime'].replace('T', '\n')}`
  694. item['landingAirport'] = `${item['landingAirport']}\n${item['landingTime'].replace('T', '\n')}`
  695. return item
  696. })
  697. this.initTableData(this.baggageTableData)
  698. } catch (error) {
  699. console.log('错误', error)
  700. }
  701. },
  702. async baggageMessageQuery() {
  703. const { FlightNO, FlightDate, BagSN } = this.queryData
  704. const dataContent = [FlightNO, FlightDate, BagSN]
  705. try {
  706. const result = await this.queryMessage(dataContent)
  707. this.messageList = result.map(message => {
  708. message.dataContent = JSON.parse(message.dataContent).dataContent
  709. return message
  710. })
  711. } catch (error) {
  712. console.log('出错了', error)
  713. }
  714. }
  715. }
  716. }
  717. </script>
  718. <style lang="scss">
  719. .radioBtn {
  720. padding: 5px;
  721. background: #000d2a;
  722. .el-radio-button__inner {
  723. background: #000d2a;
  724. color: #fff;
  725. border: none;
  726. font-weight: bold;
  727. }
  728. .el-radio-button:first-child .el-radio-button__inner {
  729. border: none;
  730. }
  731. }
  732. </style>
  733. <style lang="scss" scoped>
  734. .baggage-view {
  735. width: 100%;
  736. height: calc(100vh - 81px);
  737. overflow: hidden;
  738. background: #dfe3ea;
  739. padding: 8px 8px 0;
  740. .part1 {
  741. width: 100%;
  742. // height: 232px;
  743. background: #041741;
  744. padding: 16px 30px;
  745. .title {
  746. font-size: 18px;
  747. font-weight: bold;
  748. color: #ffffff;
  749. width: 320px;
  750. display: flex;
  751. flex-direction: row;
  752. justify-content: space-between;
  753. align-items: center;
  754. }
  755. .part1_info {
  756. width: 100%;
  757. color: #fff;
  758. font-size: 14px;
  759. font-weight: 400;
  760. color: #ffffff;
  761. > .el-row > .el-col {
  762. height: 38px;
  763. line-height: 38px;
  764. display: flex;
  765. .label {
  766. flex-basis: 126px;
  767. text-align: right;
  768. }
  769. .content {
  770. flex: 1;
  771. margin: 0;
  772. white-space: nowrap;
  773. overflow: hidden;
  774. text-overflow: ellipsis;
  775. }
  776. }
  777. }
  778. }
  779. .part2 {
  780. margin: 8px 0;
  781. width: 100%;
  782. padding: 24px 30px;
  783. background: #ffffff;
  784. display: flex;
  785. flex-direction: row;
  786. justify-content: space-between;
  787. align-items: center;
  788. .part2_info {
  789. flex: 1;
  790. display: flex;
  791. flex-direction: row;
  792. justify-content: flex-start;
  793. align-items: center;
  794. .title {
  795. font-size: 18px;
  796. font-weight: bold;
  797. color: #303133;
  798. margin-right: 20px;
  799. }
  800. .type {
  801. font-size: 18px;
  802. font-weight: bold;
  803. margin-right: 20px;
  804. }
  805. .warn {
  806. color: #df3559;
  807. }
  808. .normal {
  809. color: #519f6b;
  810. }
  811. .step {
  812. flex: 1;
  813. height: 80px;
  814. max-width: 1430px;
  815. position: relative;
  816. .baggage-track-chart {
  817. display: flex;
  818. flex-direction: row;
  819. justify-content: space-between;
  820. align-items: center;
  821. width: 100%;
  822. overflow-x: scroll;
  823. overflow-y: hidden;
  824. }
  825. .stepLine {
  826. width: 100%;
  827. height: 20px;
  828. background: #afb4bf;
  829. position: absolute;
  830. top: 50%;
  831. margin-top: -10px;
  832. border-radius: 10px;
  833. .stepLineBlue {
  834. position: absolute;
  835. height: 100%;
  836. background: #041741;
  837. border-radius: 10px;
  838. }
  839. }
  840. .stepItem {
  841. width: 80px;
  842. height: 80px;
  843. background: #afb4bf;
  844. border-radius: 50%;
  845. text-align: center;
  846. font-weight: bold;
  847. color: #ffffff;
  848. font-size: 12px;
  849. display: flex;
  850. flex-direction: column;
  851. align-content: space-around;
  852. align-items: center;
  853. // padding-top: 19px;
  854. justify-content: center;
  855. z-index: 1;
  856. .head {
  857. font-size: 14px;
  858. }
  859. }
  860. .activeItem {
  861. background: #041741;
  862. }
  863. }
  864. }
  865. }
  866. .part3 {
  867. width: 100%;
  868. // header-80px、part1-232px、part2-128px、间隙3*8px、底部44px
  869. // height: calc(100vh - 80px - 232px - 128px - 3 * 8px - 44px);
  870. background: #ffffff;
  871. ::v-deep .el-table {
  872. width: 100%;
  873. // &.el-table--striped {
  874. // .el-table__body tr.el-table__row--striped td.el-table__cell,
  875. // .el-table__header .el-table__cell {
  876. // background: #ffffff;
  877. // }
  878. // }
  879. .el-table__cell {
  880. // background: #f0f3f7;
  881. padding: 0;
  882. &.cell-click {
  883. cursor: pointer;
  884. .cell {
  885. color: #2d7cff;
  886. }
  887. }
  888. .cell {
  889. padding: 0;
  890. word-spacing: 0;
  891. font-size: 14px;
  892. font-family: Helvetica, 'Microsoft YaHei';
  893. font-weight: 400;
  894. color: #303133;
  895. .cell-content {
  896. padding: 6px 0;
  897. }
  898. }
  899. }
  900. .el-table__body .el-table__cell .cell {
  901. padding: 6px 10px;
  902. .cell-content {
  903. display: inline;
  904. padding: 0;
  905. }
  906. }
  907. }
  908. }
  909. .part4 {
  910. width: 100%;
  911. // height: calc(100vh - 80px - 232px - 2 * 8px - 44px);
  912. .head {
  913. padding: 16px 24px 11px 30px;
  914. background: transparent;
  915. display: flex;
  916. justify-content: space-between;
  917. .title {
  918. line-height: 30px;
  919. font-size: 18px;
  920. font-weight: bold;
  921. color: #303133;
  922. }
  923. }
  924. .main {
  925. height: calc(100% - 57px);
  926. overflow-y: auto;
  927. overflow-x: hidden;
  928. ::v-deep .el-row {
  929. flex-wrap: wrap;
  930. .card {
  931. width: 100%;
  932. min-height: 440px;
  933. padding: 24px 0 24px 32px;
  934. background: #ffffff;
  935. box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.29);
  936. margin-bottom: 24px;
  937. > .message-date {
  938. width: 160px;
  939. height: 26px;
  940. line-height: 14px;
  941. font-size: 14px;
  942. font-family: Helvetica;
  943. color: #afb4bf;
  944. border-bottom: 1px solid #afb4bf;
  945. margin-bottom: 18px;
  946. }
  947. > .message-content {
  948. white-space: pre-line;
  949. line-height: 24px;
  950. font-size: 14px;
  951. color: #303133;
  952. }
  953. }
  954. }
  955. }
  956. }
  957. .btns {
  958. height: 30px;
  959. display: flex;
  960. .btn-square {
  961. margin-left: 10px;
  962. width: 30px;
  963. }
  964. }
  965. }
  966. </style>
  967. <style lang="scss">
  968. .el-popover {
  969. &.popover-dark {
  970. background: #303133;
  971. color: #ffffff;
  972. border: none;
  973. }
  974. .pre-line {
  975. white-space: pre-line;
  976. }
  977. }
  978. .el-popper[x-placement^='top'].popover-dark .popper__arrow::after {
  979. border-top-color: #303133;
  980. }
  981. .el-popper[x-placement^='right'].popover-dark .popper__arrow::after {
  982. border-right-color: #303133;
  983. }
  984. .el-popper[x-placement^='bottom'].popover-dark .popper__arrow::after {
  985. border-bottom-color: #303133;
  986. }
  987. .el-popper[x-placement^='left'].popover-dark .popper__arrow::after {
  988. border-left-color: #303133;
  989. }
  990. </style>