index.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-06-22 17:39:49
  5. * @LastEditors: your name
  6. * @Description: 离港01
  7. -->
  8. <template>
  9. <div class="departure-one">
  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: 150px;"
  41. filterable
  42. placeholder="请选择机场"
  43. @change="airPortChange"
  44. >
  45. <el-option
  46. v-for="(item, index) in AirportList"
  47. :key="index"
  48. :label="item.planDepartureApt"
  49. :value="item.planDepartureApt"
  50. />
  51. </el-select>
  52. </el-form-item>
  53. <!-- <el-form-item prop="startDate">
  54. <el-date-picker
  55. v-model="formData.startDate"
  56. class="input-shadow"
  57. style="width:216px;"
  58. size="small"
  59. type="date"
  60. value-format="yyyy-MM-dd"
  61. placeholder="开始时间"
  62. @change="startDateChangeHandler"
  63. />
  64. </el-form-item>
  65. <el-form-item prop="endDate">
  66. <el-date-picker
  67. v-model="formData.endDate"
  68. class="input-shadow"
  69. style="width:216px;"
  70. size="small"
  71. type="date"
  72. value-format="yyyy-MM-dd"
  73. placeholder="结束时间"
  74. @change="endDateChangeHandler"
  75. />
  76. </el-form-item> -->
  77. <el-form-item
  78. prop="flightDate"
  79. label="航班日期"
  80. >
  81. <el-date-picker
  82. v-model="formData.flightDate"
  83. size="small"
  84. style="width: 300px;"
  85. type="daterange"
  86. value-format="yyyy-MM-dd"
  87. start-placeholder="开始日期"
  88. end-placeholder="结束日期"
  89. :picker-options="dateRangePickerOptions"
  90. @change="dateChangeHandler"
  91. />
  92. </el-form-item>
  93. <el-form-item>
  94. <div class="box-item">
  95. <p>预计装载总数:</p>
  96. <li
  97. v-for="(item, index) in orderNum"
  98. :key="index"
  99. :class="{ 'number-item': !isNaN(item), 'mark-item': isNaN(item) }"
  100. >
  101. <span v-if="!isNaN(item)">
  102. <i ref="numberItem">0123456789</i>
  103. </span>
  104. <span
  105. v-else
  106. class="comma"
  107. >{{ item }}</span>
  108. </li>
  109. </div>
  110. </el-form-item>
  111. </div>
  112. <div
  113. class="form-right"
  114. @keyup.enter="onSubmit(0)"
  115. >
  116. <el-form-item prop="search">
  117. <el-popover
  118. :value="popoverVisible"
  119. placement="bottom"
  120. trigger="manual"
  121. >
  122. <span>请输入航班号(示例:CA1234)或行李牌号(示例:1234567890)</span>
  123. <el-input
  124. slot="reference"
  125. v-model="formData.search"
  126. class="input-shadow"
  127. style="width: 240px; margin-left: 105px"
  128. size="small"
  129. placeholder="请输入内容"
  130. prefix-icon="el-icon-search"
  131. clearable
  132. @focus="popoverVisible = true"
  133. @blur="popoverVisible = false"
  134. />
  135. </el-popover>
  136. </el-form-item>
  137. <el-form-item>
  138. <el-button
  139. class="btn-shadow"
  140. size="mini"
  141. type="primary"
  142. @click="onSubmit(0)"
  143. >搜索</el-button>
  144. </el-form-item>
  145. <el-form-item v-is="['i_timeIcon']">
  146. <TimeZoneSelector />
  147. </el-form-item>
  148. <el-form-item>
  149. <img
  150. class="btn-img btn-shadow"
  151. src="../../../../assets/baggage/ic_setting.png"
  152. @click="show"
  153. >
  154. </el-form-item>
  155. </div>
  156. </el-form>
  157. </div>
  158. <!--表格-->
  159. <div
  160. v-loading="loading"
  161. class="terminal-table"
  162. element-loading-text="拼命加载中"
  163. element-loading-spinner="el-icon-loading"
  164. element-loading-background="rgba(0, 0, 0, 0.8)"
  165. >
  166. <el-table
  167. ref="table"
  168. class="table"
  169. :height="computedTableHeight"
  170. :data="dealedTableData"
  171. :header-cell-class-name="headerCellClass"
  172. :row-class-name="tableRowClassName"
  173. :cell-class-name="cellClass"
  174. show-summary
  175. :summary-method="summaryMethod"
  176. border
  177. stripe
  178. fit
  179. @cell-click="cellClickHandler"
  180. >
  181. <el-table-column
  182. v-for="col in tableColsCopy"
  183. :key="col.prop"
  184. :prop="col.prop"
  185. :label="col.label"
  186. :width="col.width"
  187. :fixed="col.fixed"
  188. :formatter="tableFormat"
  189. >
  190. <template #header>
  191. <el-tooltip
  192. :content="col.desc || childCol.label"
  193. placement="top"
  194. >
  195. <TableHeaderCell
  196. :label="col.label"
  197. :filter-options="tableDataFilters[col.prop]"
  198. :filter-values.sync="filterValues[col.prop]"
  199. :sortable="col.sortable"
  200. :sort-rule.sync="tableDataSortRules[col.prop]"
  201. />
  202. </el-tooltip>
  203. </template>
  204. </el-table-column>
  205. </el-table>
  206. </div>
  207. <!--列设置-->
  208. <Dialog
  209. :flag="dialogFlag"
  210. class="dialog-check-cols"
  211. >
  212. <div class="col-dialog">
  213. <div class="title">列设置</div>
  214. <div class="content">
  215. <el-tree
  216. :data="tableCols"
  217. :class="colsCheckClass"
  218. show-checkbox
  219. node-key="index"
  220. :default-expand-all="true"
  221. :props="{
  222. label: 'label',
  223. children: 'children'
  224. }"
  225. :default-checked-keys="checkedKeysTemp"
  226. @check="handleCheck"
  227. />
  228. </div>
  229. <div class="foot right t30">
  230. <el-button
  231. size="medium"
  232. class="r24"
  233. type="primary"
  234. @click="onCheck"
  235. >确定</el-button>
  236. <el-button
  237. size="medium"
  238. @click="hide"
  239. >取消</el-button>
  240. </div>
  241. </div>
  242. </Dialog>
  243. </div>
  244. </template>
  245. <script>
  246. import Dialog from '@/layout/components/Dialog'
  247. import TimeZoneSelector from '@/components/TimeZoneSelector'
  248. import terminalMixin from '../../mixins/terminal'
  249. import formMixin from '../../mixins/form'
  250. import tableColsMixin from '../../mixins/tableCols'
  251. import timeZoneMixin from '../../mixins/timeZone'
  252. import { getQuery } from '@/api/flight'
  253. import TableHeaderCell from '@/components/TableHeaderCell'
  254. import { setTableFilters } from '@/utils/table'
  255. export default {
  256. name: 'DepartureTerminalView',
  257. components: { Dialog, TimeZoneSelector, TableHeaderCell },
  258. mixins: [terminalMixin, formMixin, tableColsMixin, timeZoneMixin],
  259. data() {
  260. return {
  261. orderNum: ['0', '0', '0', '0', '0', '0'], // 默认总数
  262. popoverVisible: false,
  263. // 初始表头
  264. tableCols: [
  265. {
  266. prop: 'flightNO',
  267. label: '航班号',
  268. desc: '指航班编号',
  269. width: 80,
  270. fixed: 'left',
  271. filterable: true,
  272. sortable: true
  273. },
  274. {
  275. prop: 'flightDate',
  276. label: '执飞日期',
  277. desc: '指航班计划起飞日期(不变的,机票上),不是预计起飞日期(预计起飞时间可能多个),也不是实际起飞日期(实际起飞等于最后预计)',
  278. width: 105,
  279. fixed: 'left',
  280. filterable: true,
  281. sortable: true
  282. },
  283. {
  284. prop: 'planDepartureTime',
  285. label: '预计起飞时间',
  286. desc: '指航班预计起飞时间,数据是变化的,仅显示最新结果',
  287. width: 150,
  288. filterable: true,
  289. sortable: true
  290. },
  291. {
  292. prop: 'targetAirport',
  293. label: '目的站',
  294. desc: '指航班执飞航段的目的航站,以航站三字码显示',
  295. filterable: true,
  296. sortable: true
  297. },
  298. {
  299. prop: 'departureBuild',
  300. label: '航站楼',
  301. desc: '指航班执飞航段的目的航站楼',
  302. filterable: true,
  303. sortable: true
  304. },
  305. {
  306. prop: 'bordingGate',
  307. label: '登机口',
  308. desc: '指航班的登机口代码,数据是变化的,仅显示最新信息',
  309. filterable: true,
  310. sortable: true
  311. },
  312. {
  313. prop: 'standForDepartrue',
  314. label: '停机位',
  315. desc: '指航班的停机位代码,数据是变化的,仅显示最新信息',
  316. filterable: true,
  317. sortable: true
  318. },
  319. {
  320. prop: 'checkInTravellerNumber',
  321. label: '托运旅客',
  322. desc: '指航班已办理行李托运业务的旅客人数,含取消托运的旅客人数'
  323. },
  324. {
  325. prop: 'checkInNumber',
  326. label: '值机数',
  327. desc: '指已办理值机托运的行李数量,含取消托运的行李数量,含未激活'
  328. },
  329. {
  330. prop: 'unActive',
  331. label: '未激活',
  332. desc: '指最后的 BSM 报文“.S”中行李状态为“I”的行李数量,含取消托运的行李数量'
  333. },
  334. {
  335. prop: 'preLoad',
  336. label: '预计装载',
  337. desc: '指已办理值机托运的行李数量,不含取消托运的行李数量,不包含未激活'
  338. },
  339. {
  340. prop: 'checkNumber',
  341. label: '安检',
  342. desc: '指进行安检的行李数量,含取消托运的行李数量'
  343. },
  344. {
  345. prop: 'sortNumber',
  346. label: '分拣',
  347. desc: '指已分拣完成的行李数量,含取消托运的行李数量'
  348. },
  349. {
  350. prop: 'loadNumber',
  351. label: '装车',
  352. desc: '指已在分拣口装车完成的行李数量,含取消托运的行李数量'
  353. },
  354. {
  355. prop: 'landingNumber',
  356. label: '装机',
  357. desc: '指装机完成的行李数量,不含取消托运的行李数量'
  358. },
  359. {
  360. prop: 'tounLoad',
  361. label: '待翻减',
  362. desc: '指旅客在办理行李托运后,旅客取消该行李的托运并且行李此时已经过装车节点,而没有完成翻减的行李数量(须翻减总数减去已翻减数)'
  363. },
  364. {
  365. prop: 'unLoad',
  366. label: '已翻减',
  367. desc: '指旅客在办理行李托运后,旅客取消该行李的托运并且行李此时已经过装车节点,且已完成翻减的行李数量'
  368. },
  369. {
  370. prop: 'noCheckInNumber',
  371. label: '取消托运',
  372. desc: '指旅客在办理行李托运后,又取消托运的行李总数量'
  373. },
  374. {
  375. prop: 'noBSM',
  376. label: '无BSM',
  377. desc: '行李有处理信息(BPM)但无值机信息(BSM)的行李数量'
  378. },
  379. {
  380. prop: 'warning',
  381. label: '风险预警',
  382. desc: '指依据航班信息中预计起飞时间和当前时间差,与根据分拣到停机位设置的报警阈值对比,超过阈值的为风险行李,本项显示风险预警行李数量'
  383. },
  384. {
  385. prop: 'exceptions',
  386. label: '未装机行李',
  387. desc: '指航班关闭货舱门后,应装而未装的行李数量'
  388. },
  389. {
  390. prop: 'midIn',
  391. label: '中转进行李',
  392. desc: '指从其他航班中转到当前航班的行李数量'
  393. }
  394. ],
  395. tableDataSortRules: {
  396. flightCanceled: 'ascending'
  397. },
  398. loading: false,
  399. AirportList: [],
  400. loopEvent: null,
  401. leaveCount: 0,
  402. baggageCount: 0,
  403. hasSetTableScroll: false,
  404. table: null
  405. }
  406. },
  407. computed: {
  408. singleDay() {
  409. return this.startDate === this.endDate
  410. }
  411. },
  412. mounted() {
  413. this.getAirPortData()
  414. this.table = this.$refs.table.bodyWrapper
  415. const that = this
  416. this.table.addEventListener('scroll', () => {
  417. that.scrollTop = this.table.scrollTop
  418. })
  419. },
  420. activated() {
  421. this.table.scrollTop = this.scrollTop
  422. this.getTableData()
  423. const that = this
  424. this.loopEvent = setInterval(function () {
  425. that.getTableData()
  426. }, 3000)
  427. },
  428. deactivated() {
  429. if (this.loopEvent) {
  430. clearInterval(this.loopEvent)
  431. this.loopEvent = null
  432. }
  433. },
  434. beforeDestroy() {
  435. if (this.loopEvent) {
  436. clearInterval(this.loopEvent)
  437. this.loopEvent = null
  438. }
  439. },
  440. methods: {
  441. resetLoopEvent() {
  442. this.loading = true
  443. this.hasSetTableScroll = false
  444. if (this.loopEvent) {
  445. clearInterval(this.loopEvent)
  446. }
  447. this.getTableData()
  448. const that = this
  449. this.loopEvent = setInterval(function () {
  450. that.getTableData()
  451. }, 3000)
  452. },
  453. airPortChange() {
  454. this.resetLoopEvent()
  455. },
  456. dateChangeHandler() {
  457. this.resetLoopEvent()
  458. },
  459. async getAirPortData() {
  460. try {
  461. const res = await getQuery({
  462. id: DATACONTENT_ID.departureAirMainId,
  463. dataContent: []
  464. })
  465. if (Number(res.code) === 0) {
  466. this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
  467. this.formData.currentAirport = 'PEK'
  468. this.resetLoopEvent()
  469. } else {
  470. this.$message.error(res.message)
  471. }
  472. } catch (error) {
  473. console.log('出错了', error)
  474. }
  475. },
  476. tableRowClassName({ row, rowIndex }) {
  477. const classes = []
  478. if (row.flightStatus === 'DLY') {
  479. classes.push('bgl-delayed')
  480. }
  481. if (row.flightStatus === 'CAN') {
  482. classes.push('bgl-canceled')
  483. }
  484. if (row.hasTakeOff === 1) {
  485. classes.push('bgl-hui')
  486. if (rowIndex === this.leaveCount - 1) {
  487. classes.push('redBorder')
  488. }
  489. }
  490. return classes.join(' ')
  491. },
  492. headerCellClass({ row, column }) {
  493. const classes = []
  494. if (['warning', 'exceptions', 'midIn'].includes(column.property)) {
  495. classes.push('bgl-huang')
  496. }
  497. const rule = this.tableDataSortRules[column.property]
  498. if (rule) {
  499. classes.push(rule)
  500. }
  501. return classes.join(' ')
  502. },
  503. // 获取表单下拉框数据
  504. // getFormData(params) {
  505. // this.relatedAirportQuery({
  506. // ...params,
  507. // type: 'OUT'
  508. // })
  509. // this.outgoingAirlineQuery(params)
  510. // this.craftTypeQuery(params)
  511. // this.flightAttrQuery(params)
  512. // },
  513. // 获取表格数据
  514. async getTableData() {
  515. if (!this.formData.currentAirport || !this.startDate || !this.endDate) {
  516. return
  517. }
  518. const arr = [this.formData.currentAirport, this.startDate, this.endDate]
  519. try {
  520. const res = await getQuery({
  521. id: DATACONTENT_ID.departureTableMainId,
  522. dataContent: [...arr, ...arr, ...arr]
  523. })
  524. if (Number(res.code) === 0) {
  525. this.initTableData(res.returnData.listValues)
  526. } else {
  527. console.log(res.message)
  528. }
  529. this.loading = false
  530. } catch (error) {
  531. if (this.loopEvent) {
  532. clearInterval(this.loopEvent)
  533. this.loopEvent = null
  534. }
  535. this.loading = false
  536. console.log('出错了', error)
  537. }
  538. },
  539. initTableData(tableData) {
  540. this.leaveCount = 0
  541. this.baggageCount = 0
  542. tableData.forEach(item => {
  543. item['flightCanceled'] = item['flightStatus'] === 'CAN' ? 1 : 0
  544. if (item['hasTakeOff'] === 1 && !item['flightCanceled']) {
  545. this.leaveCount++
  546. }
  547. item['landingNumber'] = item['landingNumber'] ?? 0
  548. this.baggageCount = this.baggageCount + item.preLoad
  549. })
  550. this.tableData = this._.orderBy(tableData, ['hasTakeOff', 'planDepartureTime'], ['desc', 'asc'])
  551. setTableFilters(this.tableData, this.tableDataFilters)
  552. this.toOrderNum(this.baggageCount)
  553. // setInterval(() => {
  554. // this.baggageCount = this.baggageCount+1;
  555. // // 这里输入数字即可调用
  556. // }, 2000);
  557. this.$nextTick(() => {
  558. this.setTableScroll()
  559. })
  560. },
  561. setTableScroll() {
  562. if (!this.singleDay || this.hasSetTableScroll || this.leaveCount === 0) {
  563. return
  564. }
  565. const table = this.$refs['table'].$el
  566. const scrollParent = table.querySelector('.el-table__body-wrapper')
  567. if (scrollParent.scrollHeight <= scrollParent.offsetHeight) {
  568. return
  569. }
  570. const lastRow = table.querySelectorAll('.el-table__body tr')[this.leaveCount - 1]
  571. setTimeout(() => {
  572. const scrollMid = lastRow.offsetTop + lastRow.offsetHeight - scrollParent.offsetHeight / 2
  573. const scrollMax = scrollParent.scrollHeight - scrollParent.offsetHeight
  574. if (scrollMid > 0) {
  575. const scrollHeight = Math.min(scrollMid, scrollMax)
  576. scrollParent.scrollTo(0, scrollHeight)
  577. }
  578. }, 0)
  579. this.hasSetTableScroll = true
  580. },
  581. setNumberTransform() {
  582. const numberItems = this.$refs.numberItem // 拿到数字的ref,计算元素数量
  583. const numberArr = this.orderNum.filter(item => !isNaN(item))
  584. // 结合CSS 对数字字符进行滚动,显示订单数量
  585. for (let index = 0; index < numberItems.length; index++) {
  586. const elem = numberItems[index]
  587. elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`
  588. }
  589. },
  590. toOrderNum(num) {
  591. num = num.toString()
  592. if (num.length < 6) {
  593. num = '0' + num // 如未满八位数,添加"0"补位
  594. this.toOrderNum(num) // 递归添加"0"补位
  595. } else if (num.length >= 6) {
  596. this.orderNum = num.split('') // 将其便变成数据,渲染至滚动数组
  597. } else {
  598. // 订单总量数字超过八位显示异常
  599. this.$message.warning('总量数字过大')
  600. }
  601. this.setNumberTransform()
  602. }
  603. }
  604. }
  605. </script>
  606. <style lang="scss" scoped>
  607. .terminal-form-wrap {
  608. padding-top: 11px;
  609. padding-left: 5px;
  610. ::v-deep .form {
  611. display: flex;
  612. justify-content: space-between;
  613. .form-left {
  614. flex: 1;
  615. }
  616. .form-right {
  617. flex: 0 1 498px;
  618. }
  619. .el-form-item {
  620. margin-bottom: 0px;
  621. margin-right: 8px;
  622. button,
  623. input,
  624. optgroup,
  625. select,
  626. textarea {
  627. font-family: Helvetica, 'Microsoft YaHei';
  628. font-size: 14px;
  629. }
  630. .el-switch__label {
  631. color: #303133;
  632. }
  633. .el-form-item__error {
  634. z-index: 10;
  635. }
  636. }
  637. .btn-img {
  638. position: relative;
  639. top: 6px;
  640. }
  641. }
  642. .box-item {
  643. position: relative;
  644. height: 50px;
  645. font-size: 18px;
  646. line-height: 32px;
  647. text-align: center;
  648. list-style: none;
  649. color: #2d7cff;
  650. writing-mode: vertical-lr;
  651. text-orientation: upright;
  652. /*文字禁止编辑*/
  653. -moz-user-select: none; /*火狐*/
  654. -webkit-user-select: none; /*webkit浏览器*/
  655. -ms-user-select: none; /*IE10*/
  656. -khtml-user-select: none; /*早期浏览器*/
  657. user-select: none;
  658. /* overflow: hidden; */
  659. p {
  660. line-height: 32px;
  661. writing-mode: horizontal-tb !important;
  662. text-orientation: none !important;
  663. /*文字禁止编辑*/
  664. -moz-user-select: none; /*火狐*/
  665. -webkit-user-select: none; /*webkit浏览器*/
  666. -ms-user-select: none; /*IE10*/
  667. -khtml-user-select: none; /*早期浏览器*/
  668. user-select: none;
  669. margin-top: 5px;
  670. }
  671. }
  672. /* 默认逗号设置 */
  673. .mark-item {
  674. width: 10px;
  675. height: 32px;
  676. margin-right: 5px;
  677. line-height: 10px;
  678. font-size: 18px;
  679. position: relative;
  680. & > span {
  681. position: absolute;
  682. width: 100%;
  683. bottom: 0;
  684. writing-mode: vertical-rl;
  685. text-orientation: upright;
  686. }
  687. }
  688. /*滚动数字设置*/
  689. .number-item {
  690. width: 41px;
  691. height: 42px;
  692. /* 背景图片 */
  693. // background: url(/images/text-bg-blue.png) no-repeat center center;
  694. // background-size: 100% 100%;
  695. // background: #ccc;
  696. list-style: none;
  697. margin-right: 5px;
  698. // background:rgba(250,250,250,1);
  699. border-radius: 4px;
  700. border: 3px solid rgb(221, 221, 221);
  701. & > span {
  702. position: relative;
  703. display: inline-block;
  704. margin-right: 10px;
  705. width: 100%;
  706. height: 100%;
  707. writing-mode: vertical-rl;
  708. text-orientation: upright;
  709. overflow: hidden;
  710. & > i {
  711. font-style: normal;
  712. position: absolute;
  713. top: 11px;
  714. left: 50%;
  715. transform: translate(-50%, -1%);
  716. transition: transform 1s ease-in-out;
  717. letter-spacing: 10px;
  718. }
  719. }
  720. }
  721. .number-item:last-child {
  722. margin-right: 0;
  723. }
  724. }
  725. .terminal-table {
  726. width: 100%;
  727. ::v-deep .table {
  728. width: 100%;
  729. .cell {
  730. padding: 0;
  731. text-align: center;
  732. font-size: 14px;
  733. font-family: Helvetica, 'Microsoft YaHei';
  734. letter-spacing: 0;
  735. }
  736. .cell-click {
  737. cursor: pointer;
  738. color: #2d7cff;
  739. &.cell-clicked {
  740. color: purple;
  741. }
  742. }
  743. .el-table__header-wrapper,
  744. .el-table__fixed-header-wrapper {
  745. .cell {
  746. font-weight: bold;
  747. color: #101116;
  748. }
  749. .has-gutter {
  750. tr {
  751. .bgl-huang {
  752. background: #fcf0b1;
  753. }
  754. }
  755. }
  756. }
  757. .el-table__body-wrapper,
  758. .el-table__fixed-body-wrapper {
  759. tr.bgl-hui {
  760. td {
  761. background: #d2d6df;
  762. }
  763. &.redBorder {
  764. position: relative;
  765. &::after {
  766. content: '';
  767. position: absolute;
  768. left: 0;
  769. bottom: 0;
  770. width: 100%;
  771. height: 2px;
  772. background: #e83f82;
  773. }
  774. }
  775. }
  776. tr.bgl-delayed td {
  777. background: #fcf0b1;
  778. }
  779. tr.bgl-canceled td {
  780. background: #f7babe;
  781. }
  782. td.cell-tounLoad {
  783. background: lightcoral !important;
  784. position: relative;
  785. &::after {
  786. content: '';
  787. display: block;
  788. width: 100%;
  789. height: 100%;
  790. position: absolute;
  791. top: 0;
  792. left: 0;
  793. border: 2px dashed red;
  794. }
  795. }
  796. .el-table__cell.is-hidden > * {
  797. visibility: visible;
  798. }
  799. }
  800. }
  801. }
  802. </style>