index.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-01-17 10:39:22
  4. * @LastEditTime: 2022-05-13 16:31:41
  5. * @LastEditors: your name
  6. * @Description: 离港01
  7. -->
  8. <template>
  9. <div class="departure-one">
  10. <!--功能区-表单-->
  11. <div class="departure-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;margin-left:10px"
  23. placeholder="全部机场"
  24. size="small"
  25. :options="currentAirportList"
  26. :props="currentAirportProps"
  27. collapse-tags
  28. clearable
  29. filterable
  30. @change="setCurrentAirport"
  31. /> -->
  32. <el-select
  33. v-model="formData.currentAirport"
  34. size="small"
  35. filterable
  36. placeholder="请选择机场"
  37. @change="airPortChange"
  38. >
  39. <el-option
  40. v-for="(item, index) in AirportList"
  41. :key="index"
  42. :label="item.PlanDepartureApt"
  43. :value="item.PlanDepartureApt"
  44. />
  45. </el-select>
  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="carrierProps"
  53. :props="optionProps"
  54. placeholder="进港承运航司"
  55. collapse-tags
  56. clearable
  57. filterable
  58. @change="getTableData"
  59. />
  60. </el-form-item>
  61. <el-form-item prop="outgoingAirline">
  62. <el-cascader
  63. v-model="formData.outgoingAirline"
  64. style="width: 164px"
  65. size="small"
  66. :options="carrierPropsop"
  67. :props="optionPropser"
  68. placeholder="离港承运航司"
  69. collapse-tags
  70. clearable
  71. filterable
  72. @change="getTableData"
  73. />
  74. </el-form-item>
  75. <el-form-item prop="startDate">
  76. <el-date-picker
  77. v-model="formData.startDate"
  78. style="width: 216px"
  79. size="small"
  80. type="date"
  81. value-format="yyyy-MM-dd"
  82. placeholder="开始时间"
  83. @change="setStartDate"
  84. />
  85. </el-form-item>
  86. <el-form-item prop="endDate">
  87. <el-date-picker
  88. v-model="formData.endDate"
  89. style="width: 216px"
  90. size="small"
  91. type="date"
  92. value-format="yyyy-MM-dd"
  93. placeholder="结束时间"
  94. @change="setEndDate"
  95. />
  96. </el-form-item>
  97. <!-- <el-form-item>
  98. <div class="box-item">
  99. <p>预计装载总数:</p>
  100. <li
  101. :class="{ 'number-item': !isNaN(item), 'mark-item': isNaN(item) }"
  102. v-for="(item, index) in orderNum"
  103. :key="index"
  104. >
  105. <span v-if="!isNaN(item)">
  106. <i ref="numberItem">0123456789</i>
  107. </span>
  108. <span class="comma" v-else>{{ item }}</span>
  109. </li>
  110. </div>
  111. </el-form-item> -->
  112. <div
  113. style="float: right"
  114. @keyup.enter="onSubmit(1)"
  115. >
  116. <el-form-item prop="search">
  117. <el-input
  118. v-model="formData.search"
  119. style="width: 240px; margin-left: 105px"
  120. size="small"
  121. placeholder="请输入内容"
  122. prefix-icon="el-icon-search"
  123. clearable
  124. @clear="inputClear"
  125. />
  126. </el-form-item>
  127. <el-form-item>
  128. <el-button
  129. size="small"
  130. type="primary"
  131. @click="onSubmit(1)"
  132. >搜索</el-button>
  133. </el-form-item>
  134. <el-form-item v-is="['ti_showTransit']">
  135. <el-button
  136. size="small"
  137. type="primary"
  138. @click="changeView"
  139. >切换视角</el-button>
  140. </el-form-item>
  141. <!-- <el-form-item>
  142. <el-switch
  143. v-model="formData.switch"
  144. style="margin-left: 40px"
  145. active-text="显示中转"
  146. />
  147. </el-form-item> -->
  148. <el-form-item v-is="['i_timeIcon']">
  149. <el-dropdown>
  150. <img
  151. class="checkTime msgImg"
  152. src="../../../../assets/departure/ic_time.png"
  153. >
  154. <el-dropdown-menu
  155. slot="dropdown"
  156. class="time-zone"
  157. >
  158. <el-dropdown-item>国内Local/国际UTC</el-dropdown-item>
  159. <el-dropdown-item>Local</el-dropdown-item>
  160. <el-dropdown-item>UTC</el-dropdown-item>
  161. </el-dropdown-menu>
  162. </el-dropdown>
  163. </el-form-item>
  164. <el-form-item>
  165. <img
  166. class="msgImg"
  167. src="../../../../assets/departure/ic_setting.png"
  168. @click="show"
  169. >
  170. </el-form-item>
  171. <!-- <el-form-item>
  172. <el-button
  173. class="btn-square setBtn"
  174. type="primary"
  175. icon="el-icon-s-tools"
  176. size="mini"
  177. @click="show"
  178. />
  179. </el-form-item> -->
  180. </div>
  181. </el-form>
  182. </div>
  183. <!--表格-->
  184. <div
  185. v-loading="loading"
  186. class="departure-table"
  187. element-loading-text="拼命加载中"
  188. element-loading-spinner="el-icon-loading"
  189. element-loading-background="rgba(0, 0, 0, 0.8)"
  190. >
  191. <el-table
  192. ref="table"
  193. :data="tableData"
  194. class="table"
  195. max-height="100%"
  196. :height="computedTableHeight"
  197. show-summary
  198. :summary-method="summaryMethod"
  199. :span-method="arraySpanMethod"
  200. :cell-class-name="cellClass"
  201. border
  202. stripe
  203. @cell-click="cellClick"
  204. >
  205. <el-table-column
  206. v-for="(item, index) in tableColsCopy"
  207. :key="index"
  208. :prop="item.statCode"
  209. :label="item.statName"
  210. >
  211. <el-table-column
  212. v-for="(p, i) in item.children"
  213. :key="i"
  214. :prop="p.statCode"
  215. :label="p.statName"
  216. :formatter="tableFormat"
  217. >
  218. <template slot="header">
  219. <el-tooltip :content="p.statName" placement="top"><span>{{ p.statName }}</span></el-tooltip>
  220. </template>
  221. </el-table-column>
  222. </el-table-column>
  223. </el-table>
  224. </div>
  225. <!--列设置-->
  226. <Dialog
  227. :flag="dialogFlag"
  228. class="dialog-check-cols"
  229. >
  230. <div class="col-dialog">
  231. <div class="title">列设置</div>
  232. <div class="content">
  233. <el-tree
  234. :data="tableCols"
  235. :class="colsCheckClass"
  236. show-checkbox
  237. node-key="index"
  238. :default-expand-all="true"
  239. :props="{
  240. label: 'statName',
  241. children: 'children',
  242. }"
  243. :default-checked-keys="checkedKeysTemp"
  244. @check="handleCheck"
  245. />
  246. </div>
  247. <div class="foot right t30">
  248. <el-button
  249. size="medium"
  250. class="r24"
  251. type="primary"
  252. @click="onCheck"
  253. >确定</el-button>
  254. <el-button
  255. size="medium"
  256. @click="hide"
  257. >取消</el-button>
  258. </div>
  259. </div>
  260. </Dialog>
  261. </div>
  262. </template>
  263. <script>
  264. import Dialog from '@/layout/components/Dialog'
  265. import terminalMixin from '../../mixins/terminal'
  266. import formMixin from '../../mixins/form'
  267. import tableColsMixin from '../../mixins/tableCols'
  268. import { getQuery } from '@/api/flight'
  269. export default {
  270. name: 'DepartureTerminalView',
  271. components: { Dialog },
  272. mixins: [terminalMixin, formMixin, tableColsMixin],
  273. data() {
  274. return {
  275. optionProps: {
  276. value: 'inAicompanyCode2',
  277. label: 'inAicompanyCode2'
  278. },
  279. optionPropser: {
  280. value: 'outAicompanyCode2',
  281. label: 'outAicompanyCode2'
  282. },
  283. orderNum: ['0', '0', '0', '0', '0', '0'], // 默认总数
  284. // 初始表头
  285. tableCols: [
  286. {
  287. statCode: 'arrivalInfo',
  288. statName: '进港航班',
  289. children: [
  290. {
  291. statCode: 'PreFlightNO',
  292. statName: '航班号',
  293. width: 122
  294. },
  295. {
  296. statCode: 'PreFlightDate',
  297. statName: '航班日期',
  298. width: 83
  299. },
  300. {
  301. statCode: 'PreAirport',
  302. statName: '起飞机场',
  303. width: 79
  304. },
  305. {
  306. statCode: 'ActualLandingTime',
  307. statName: '降落时间',
  308. width: 79
  309. },
  310. {
  311. statCode: 'LandingBuild',
  312. statName: '降落航站楼',
  313. width: 79
  314. },
  315. {
  316. statCode: 'Carousel',
  317. statName: '行李转盘',
  318. width: 79
  319. },
  320. {
  321. statCode: 'StandForLanding',
  322. statName: '降落停机位',
  323. width: 79
  324. },
  325. {
  326. statCode: 'inTransferBaggageCount',
  327. statName: '中转行李数',
  328. width: 58
  329. },
  330. {
  331. statCode: 'inTransferredBaggageCount',
  332. statName: '已中转行李数',
  333. width: 63
  334. }
  335. ]
  336. },
  337. {
  338. statCode: 'departureInfo',
  339. statName: '离港航班',
  340. children: [
  341. {
  342. statCode: 'FlightNO',
  343. statName: '航班号',
  344. width: 81
  345. },
  346. {
  347. statCode: 'FlightDate',
  348. statName: '航班日期',
  349. width: 100
  350. },
  351. {
  352. statCode: 'ActualDepartureTime',
  353. statName: '起飞时间',
  354. width: 100
  355. },
  356. {
  357. statCode: 'TargetAirport',
  358. statName: '目的站',
  359. width: 93
  360. },
  361. {
  362. statCode: 'DepartureBuild',
  363. statName: '起飞航站楼',
  364. width: 81
  365. },
  366. {
  367. statCode: 'BordingGate',
  368. statName: '起飞登机口',
  369. width: 81
  370. },
  371. {
  372. statCode: 'StandForDepartrue',
  373. statName: '起飞停机位',
  374. width: 81
  375. },
  376. {
  377. statCode: 'outTransferBaggageCount',
  378. statName: '中转进行李数',
  379. width: 93
  380. },
  381. {
  382. statCode: 'outTransferredBaggageCount',
  383. statName: '已中转进行李数',
  384. width: 120
  385. },
  386. {
  387. statCode: 'timeDifference',
  388. statName: '转运时间',
  389. width: 93
  390. }
  391. ]
  392. }
  393. ],
  394. AirportList: [],
  395. carrierProps: [],
  396. carrierPropsop: [],
  397. tableDataFilters: {
  398. FlightNO: [],
  399. FlightDate: [],
  400. PlanDepartureTime: [],
  401. TargetAirport: [],
  402. BordingGate: [],
  403. StandForDepartrue: [],
  404. DepartureBuild: []
  405. },
  406. loopEvent: null,
  407. leaveCount: 0,
  408. baggageCount: 0,
  409. spanArr: [],
  410. contactDot: 0,
  411. flag: 0,
  412. position: 0
  413. }
  414. },
  415. created() {
  416. // this.getAviationData();
  417. // this.upAviationData();
  418. this.getAirPortData()
  419. },
  420. // watch: {
  421. // formData() {
  422. // this.getAviationData();
  423. // this.upAviationData();
  424. // },
  425. // },
  426. methods: {
  427. cellClass(row, column, rowIndex, columnIndex) {
  428. if (['FlightNO', 'PreFlightNO', 'outTransferBaggageCount'].includes(row.column.property)) {
  429. return 'clickCell'
  430. }
  431. },
  432. cellClick(row, column, cell, event) {
  433. switch (column.property) {
  434. case 'FlightNO':
  435. this.$router.push({ path: '/transfer/arrival/flightView', query: row })
  436. break
  437. case 'PreFlightNO': {
  438. const row2 = this._.cloneDeep(row)
  439. row2.FlightNO = row2.PreFlightNO
  440. this.$router.push({ path: '/transfer/arrival/flightView', query: row2 })
  441. break
  442. }
  443. case 'outTransferBaggageCount':
  444. this.$router.push({
  445. path: '/advance',
  446. query: {
  447. FlightNO: row.PreFlightNO,
  448. transferDeparture: row.FlightNO,
  449. startDate: row.FlightDate,
  450. endDate: row.FlightDate
  451. }
  452. })
  453. break
  454. default:
  455. break
  456. }
  457. },
  458. changeView() {
  459. this.$router.replace({
  460. path: '/transfer/departure'
  461. })
  462. },
  463. airPortChange() {
  464. this.getAviationData()
  465. this.upAviationData()
  466. // this.getTableData();
  467. },
  468. //选择机场
  469. async getAirPortData() {
  470. try {
  471. const res = await getQuery({
  472. id: 72,
  473. dataContent: []
  474. })
  475. if (res.code == 0) {
  476. this.AirportList = res.returnData
  477. this.formData.currentAirport = 'PEK'
  478. this.getAviationData()
  479. this.upAviationData()
  480. this.getTableData()
  481. } else {
  482. this.$message.error(res.message)
  483. }
  484. } catch (error) {
  485. console.log('出错了', error)
  486. }
  487. },
  488. //选择航司
  489. async getAviationData() {
  490. try {
  491. const res = await getQuery({
  492. id: 71,
  493. dataContent: [this.formData.currentAirport]
  494. })
  495. if (res.code == 0) {
  496. this.carrierProps = res.returnData
  497. // this.getTableData();
  498. } else {
  499. this.$message.error(res.message)
  500. }
  501. } catch (error) {
  502. console.log('出错了', error)
  503. }
  504. },
  505. //选择航司
  506. async upAviationData() {
  507. try {
  508. const res = await getQuery({
  509. id: 74,
  510. dataContent: [this.formData.currentAirport]
  511. })
  512. if (res.code == 0) {
  513. this.carrierPropsop = res.returnData
  514. // this.getTableData();
  515. } else {
  516. this.$message.error(res.message)
  517. }
  518. } catch (error) {
  519. console.log('出错了', error)
  520. }
  521. },
  522. tableRowClassName({ row, rowIndex }) {
  523. if (row.hasTakenOff == 0) {
  524. if (rowIndex == this.leaveCount - 1) {
  525. return 'bgl-hui redBorder'
  526. } else {
  527. return 'bgl-hui'
  528. }
  529. }
  530. },
  531. tableCellClassName({ row, column }) {
  532. if (
  533. column.property === 'transfer_all' ||
  534. column.property === 'departureAnomaly' ||
  535. column.property === 'riskWarning'
  536. ) {
  537. return 'bgl-huang'
  538. }
  539. },
  540. // 获取表单下拉框数据
  541. // getFormData(params) {
  542. // this.relatedAirportQuery({
  543. // ...params,
  544. // type: 'OUT'
  545. // })
  546. // this.outgoingAirlineQuery(params)
  547. // this.craftTypeQuery(params)
  548. // this.flightAttrQuery(params)
  549. // },
  550. // 获取表格数据
  551. async getTableData() {
  552. if (!this.currentAirport) {
  553. return
  554. }
  555. let arrs1 = [this.formData.inboundCarrier.length == 0 ? '' : this.formData.inboundCarrier[0]]
  556. let arrs2 = [this.formData.outgoingAirline.length == 0 ? '' : this.formData.outgoingAirline[0]]
  557. let arr = [
  558. this.formData.currentAirport,
  559. this.formData.startDate,
  560. this.formData.endDate,
  561. ...arrs1,
  562. ...arrs1,
  563. ...arrs1,
  564. ...arrs2,
  565. ...arrs2,
  566. ...arrs2
  567. // this.formData.inboundCarrier,
  568. // this.formData.outgoingAirline,
  569. // JSON.stringify(this.formData.inboundCarrier),
  570. // JSON.stringify(this.formData.outgoingAirline),
  571. ]
  572. try {
  573. const res = await getQuery({
  574. id: 69,
  575. dataContent: [...arr]
  576. })
  577. if (res.code == 0) {
  578. // this.tableData = this._.sortBy(res.returnData, [
  579. // "FlightDate",
  580. // "PlanDepartureTime",
  581. // ]);
  582. this.tableData = res.returnData
  583. let contactDot = this.contactDot
  584. this.spanArr = []
  585. this.tableData.forEach((item, index) => {
  586. item.index = index
  587. if (index === 0) {
  588. this.spanArr.push(1)
  589. } else {
  590. if (item.PreFlightNO === this.tableData[index - 1].PreFlightNO) {
  591. this.spanArr[contactDot] += 1
  592. this.spanArr.push(0)
  593. } else {
  594. this.spanArr.push(1)
  595. contactDot = index
  596. }
  597. }
  598. })
  599. //this.initTableData(res.returnData);
  600. } else {
  601. console.log(res.message)
  602. }
  603. } catch (error) {
  604. clearInterval(this.loopEvent)
  605. console.log('出错了', error)
  606. }
  607. },
  608. initTableData(tableData) {
  609. this.leaveCount = 0
  610. this.baggageCount = 0
  611. tableData.forEach(item => {
  612. if (item.hasTakenOff == 0) {
  613. this.leaveCount++
  614. }
  615. // item["waitfanj"] = item["noCheckInNumber"] - item["unLoad"];
  616. this.baggageCount = this.baggageCount + item.preLoad
  617. })
  618. this.tableData = this._.sortBy(tableData, ['PreFlightNO', 'PreFlightDate'])
  619. // this.setTableFilters();
  620. // this.toOrderNum(this.baggageCount);
  621. // setInterval(() => {
  622. // this.baggageCount = this.baggageCount+1;
  623. // // 这里输入数字即可调用
  624. // }, 2000);
  625. },
  626. // 表格添加过滤条件
  627. setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
  628. const tempSets = {}
  629. Object.keys(filters).forEach(key => {
  630. tempSets[key] = new Set()
  631. })
  632. tableData.forEach(item => {
  633. Object.keys(tempSets).forEach(key => {
  634. (item[key] ?? '') !== '' && tempSets[key].add(item[key])
  635. })
  636. })
  637. Object.keys(tempSets).forEach(key => {
  638. filters[key] = this._.orderBy(
  639. [...tempSets[key]].map(value => ({
  640. text: value,
  641. value
  642. })),
  643. o => o.value
  644. )
  645. })
  646. },
  647. filterHandler(value, row, column) {
  648. const property = column['property']
  649. return row[property] === value
  650. },
  651. setNumberTransform() {
  652. const numberItems = this.$refs.numberItem // 拿到数字的ref,计算元素数量
  653. const numberArr = this.orderNum.filter(item => !isNaN(item))
  654. // 结合CSS 对数字字符进行滚动,显示订单数量
  655. for (let index = 0; index < numberItems.length; index++) {
  656. const elem = numberItems[index]
  657. elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`
  658. }
  659. },
  660. toOrderNum(num) {
  661. num = num.toString()
  662. if (num.length < 6) {
  663. num = '0' + num // 如未满八位数,添加"0"补位
  664. this.toOrderNum(num) // 递归添加"0"补位
  665. } else if (num.length >= 6) {
  666. this.orderNum = num.split('') // 将其便变成数据,渲染至滚动数组
  667. } else {
  668. // 订单总量数字超过八位显示异常
  669. this.$message.warning('总量数字过大')
  670. }
  671. this.setNumberTransform()
  672. },
  673. tableSpanMethod({ row, column, rowIndex, columnIndex }) {
  674. if (
  675. [
  676. 'PreFlightNO',
  677. 'PreFlightDate',
  678. 'PreAirport',
  679. 'ActualLandingTime',
  680. 'LandingBuild',
  681. 'Carousel',
  682. 'StandForLanding',
  683. 'inTransferBaggageCount',
  684. 'inTransferredBaggageCount',
  685. 'FlightNO',
  686. 'FlightDate',
  687. 'ActualDepartureTime',
  688. 'TargetAirport',
  689. 'DepartureBuild',
  690. 'BordingGate',
  691. 'StandForDepartrue',
  692. 'outTransferBaggageCount',
  693. 'outTransferredBaggageCount',
  694. 'timeDifference'
  695. ].includes(column['property'])
  696. ) {
  697. const _row = this.spanArr[rowIndex]
  698. const _col = _row > 0 ? 1 : 0
  699. return {
  700. rowspan: _row,
  701. colspan: _col
  702. }
  703. }
  704. },
  705. arraySpanMethod({ row, column, rowIndex, columnIndex }) {
  706. for (let i = 0; i < 9; i++) {
  707. if (columnIndex === i) {
  708. const _row = this.spanArr[rowIndex]
  709. const _col = _row > 0 ? 1 : 0
  710. return {
  711. rowspan: _row,
  712. colspan: _col
  713. }
  714. }
  715. }
  716. // if (columnIndex === 0) {
  717. // if (rowIndex == 0) {
  718. // return [3, 1];
  719. // } else if (rowIndex >= 3) {
  720. // return [1, 2];
  721. // } else {
  722. // return [0, 0];
  723. // }
  724. // } else if (columnIndex == 1) {
  725. // // 第二列的大于3行的清除,避免影响样式
  726. // if (rowIndex >= 3) {
  727. // return [0, 0];
  728. // }
  729. // }
  730. }
  731. },
  732. mounted() {
  733. // this.arraySpanMethod();
  734. let that = this
  735. this.loopEvent = setInterval(function () {
  736. console.log(this.contactDot)
  737. that.getTableData()
  738. }, 3000)
  739. },
  740. beforeDestroy() {
  741. clearInterval(this.loopEvent)
  742. }
  743. }
  744. </script>
  745. <style lang="scss" scoped>
  746. .departure-form {
  747. padding-top: 11px;
  748. padding-left: 5px;
  749. ::v-deep .form {
  750. .el-form-item {
  751. margin-bottom: 0px;
  752. margin-right: 8px;
  753. button,
  754. input,
  755. optgroup,
  756. select,
  757. textarea {
  758. font-family: Helvetica, 'Microsoft YaHei';
  759. font-size: 14px;
  760. }
  761. .el-switch__label {
  762. color: #303133;
  763. }
  764. .el-form-item__error {
  765. z-index: 10;
  766. }
  767. .el-button {
  768. &.btn-square {
  769. width: 30px;
  770. height: 30px;
  771. display: flex;
  772. align-items: center;
  773. justify-content: center;
  774. margin-top: 5px;
  775. }
  776. }
  777. }
  778. .checkTime {
  779. margin: 0 16px;
  780. }
  781. .msgImg {
  782. cursor: pointer;
  783. position: relative;
  784. top: 6px;
  785. }
  786. }
  787. .box-item {
  788. position: relative;
  789. height: 32px;
  790. font-size: 18px;
  791. line-height: 32px;
  792. text-align: center;
  793. list-style: none;
  794. color: #2d7cff;
  795. writing-mode: vertical-lr;
  796. text-orientation: upright;
  797. /*文字禁止编辑*/
  798. -moz-user-select: none; /*火狐*/
  799. -webkit-user-select: none; /*webkit浏览器*/
  800. -ms-user-select: none; /*IE10*/
  801. -khtml-user-select: none; /*早期浏览器*/
  802. user-select: none;
  803. /* overflow: hidden; */
  804. p {
  805. line-height: 32px;
  806. writing-mode: horizontal-tb !important;
  807. text-orientation: none !important;
  808. /*文字禁止编辑*/
  809. -moz-user-select: none; /*火狐*/
  810. -webkit-user-select: none; /*webkit浏览器*/
  811. -ms-user-select: none; /*IE10*/
  812. -khtml-user-select: none; /*早期浏览器*/
  813. user-select: none;
  814. margin-top: 5px;
  815. }
  816. }
  817. /* 默认逗号设置 */
  818. .mark-item {
  819. width: 10px;
  820. height: 32px;
  821. margin-right: 5px;
  822. line-height: 10px;
  823. font-size: 18px;
  824. position: relative;
  825. & > span {
  826. position: absolute;
  827. width: 100%;
  828. bottom: 0;
  829. writing-mode: vertical-rl;
  830. text-orientation: upright;
  831. }
  832. }
  833. /*滚动数字设置*/
  834. .number-item {
  835. width: 41px;
  836. height: 42px;
  837. /* 背景图片 */
  838. background: url(/images/text-bg-blue.png) no-repeat center center;
  839. background-size: 100% 100%;
  840. // background: #ccc;
  841. list-style: none;
  842. margin-right: 5px;
  843. // background:rgba(250,250,250,1);
  844. border-radius: 4px;
  845. border: 3px solid rgb(221, 221, 221);
  846. & > span {
  847. position: relative;
  848. display: inline-block;
  849. margin-right: 10px;
  850. width: 100%;
  851. height: 100%;
  852. writing-mode: vertical-rl;
  853. text-orientation: upright;
  854. overflow: hidden;
  855. & > i {
  856. font-style: normal;
  857. position: absolute;
  858. top: 11px;
  859. left: 50%;
  860. transform: translate(-50%, -1%);
  861. transition: transform 1s ease-in-out;
  862. letter-spacing: 10px;
  863. }
  864. }
  865. }
  866. .number-item:last-child {
  867. margin-right: 0;
  868. }
  869. }
  870. .departure-table {
  871. width: 100%;
  872. ::v-deep .table {
  873. width: 100%;
  874. .cell {
  875. padding: 0;
  876. text-align: center;
  877. font-size: 14px;
  878. font-family: Helvetica, 'Microsoft YaHei';
  879. letter-spacing: 0;
  880. }
  881. .clickCell {
  882. cursor: pointer;
  883. color: #2d7cff;
  884. }
  885. .el-table__header-wrapper {
  886. .cell {
  887. font-weight: bold;
  888. color: #101116;
  889. }
  890. .has-gutter {
  891. tr {
  892. .bgl-huang {
  893. background: #fcf0b1;
  894. }
  895. }
  896. }
  897. }
  898. .el-table__body-wrapper {
  899. tr.bgl-hui {
  900. background: #d2d6df;
  901. td {
  902. background: #d2d6df;
  903. }
  904. &.redBorder {
  905. position: relative;
  906. &::after {
  907. content: '';
  908. position: absolute;
  909. left: 0;
  910. bottom: 0;
  911. width: 100%;
  912. height: 2px;
  913. background: #e83f82;
  914. }
  915. }
  916. }
  917. }
  918. }
  919. }
  920. </style>