index.vue 26 KB

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