table.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. <template>
  2. <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="newQueryTable">
  3. <template v-if="istableChild">
  4. <el-table ref="table" v-el-table-infinite-scroll="load" :data="dealedTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" :show-summary="showSummary" :header-cell-class-name="headerCellClass" :row-class-name="rowClass" :cell-class-name="cellClass" height="100%" class="table infinite-list" stripe border @cell-click="cellClick">
  5. <el-table-column v-for="col in tableColsCopy" :key="col.columnName" :prop="col.columnName" :label="col.groupName" align="center">
  6. <el-table-column v-for="childCol in col.children" :key="childCol.columnName" :width="childCol.nameLength ? Number(childCol.nameLength) : ''" :prop="childCol.columnName" :label="childCol.columnLabel" :formatter="formatter">
  7. <template #header>
  8. <el-tooltip :content="childCol.columnDescribe || childCol.columnLabel" placement="top">
  9. <TableHeaderCell :label="childCol.columnLabel" :filter-options="tableDataFilters[childCol.columnName]" :filter-values.sync="filterValues[childCol.columnName]" :sortable="childCol.needSort" :sort-rule.sync="tableDataSortRules[childCol.columnName]" />
  10. </el-tooltip>
  11. </template>
  12. </el-table-column>
  13. </el-table-column>
  14. </el-table>
  15. </template>
  16. <template v-else>
  17. <el-table ref="table" v-el-table-infinite-scroll="load" :data="dealedTableData" :summary-method="getSummaries" :span-method="tableSpanMethod" :show-summary="showSummary" :header-cell-class-name="headerCellClass" :row-class-name="rowClass" :cell-class-name="cellClass" height="100%" class="table infinite-list" border stripe @cell-click="cellClick">
  18. <el-table-column v-for="(item, index) in tableColsCopy" :key="index" :width="item.nameLength ? Number(item.nameLength) : ''" :prop="item.columnName" :label="item.columnLabel" :show-overflow-tooltip="showOverflowTooltip" :formatter="formatter">
  19. <template #header>
  20. <el-tooltip :content="item.columnDescribe || item.columnLabel" placement="top">
  21. <TableHeaderCell :label="item.columnLabel" :filter-options="tableDataFilters[item.columnName]" :filter-values.sync="filterValues[item.columnName]" :sortable="item.needSort" :sort-rule.sync="tableDataSortRules[item.columnName]" />
  22. </el-tooltip>
  23. </template>
  24. </el-table-column>
  25. </el-table>
  26. </template>
  27. <template v-if="istableDown">
  28. <div :style="downStyle" class="down-btns">
  29. <img class="btn-square btn-shadow" src="@/assets/baggage/ic_export.png" title="下载" @click="exportHandler" />
  30. </div>
  31. </template>
  32. <template v-if="istableCol">
  33. <div :style="btnStyle" class="btns">
  34. <img class="btn-square btn-shadow" src="@/assets/baggage/ic_setting.png" title="列设置" @click="show" />
  35. </div>
  36. <Dialog :flag="dialogFlag" width="600px" class="dialog-check-group">
  37. <div class="dialog-wrapper">
  38. <div class="title">列设置</div>
  39. <div style="height: 600px" class="content">
  40. <el-scrollbar style="height: 100%">
  41. <el-tree ref="columnSetTree" :data="tableCols" :class="colsCheckClass" show-checkbox node-key="index" :default-expand-all="true" :props="{
  42. label: 'columnLabel',
  43. children: 'children',
  44. }" :default-checked-keys="checkedKeysTemp" @check="handleCheck" />
  45. </el-scrollbar>
  46. </div>
  47. <div class="foot right t30">
  48. <el-button size="medium" class="r24" type="primary" @click="onCheck('baggageTableData')">确定</el-button>
  49. <el-button size="medium" @click="hide">取消</el-button>
  50. </div>
  51. </div>
  52. </Dialog>
  53. </template>
  54. </div>
  55. </template>
  56. <script>
  57. import pf from '@/layout/mixin/publicFunc'
  58. import { getToken } from '@/utils/auth'
  59. import { getAuthData, formatOrder } from '@/utils/validate'
  60. import { exportToExcel } from '@/utils/table'
  61. import tableColsMixin from '../mix/tableCols'
  62. import Dialog from '@/layout/components/Dialog/index.vue'
  63. import TableHeaderCell from '@/components/TableHeaderCell/index.vue'
  64. export default {
  65. name: 'NewQueryTable',
  66. components: { Dialog, TableHeaderCell },
  67. mixins: [pf, tableColsMixin],
  68. props: {
  69. // 不换行,溢出隐藏
  70. showOverflowTooltip: {
  71. type: Boolean,
  72. default: true,
  73. },
  74. tableTag: {
  75. type: Object,
  76. default: () => ({}),
  77. },
  78. tableName: {
  79. type: String,
  80. default: '',
  81. },
  82. istableCol: {
  83. type: Boolean,
  84. default: false,
  85. },
  86. istableDown: {
  87. type: Boolean,
  88. default: false,
  89. },
  90. downName: {
  91. type: String,
  92. default: '',
  93. },
  94. istableChild: {
  95. type: Boolean,
  96. default: false,
  97. },
  98. btnStyle: {
  99. type: Object,
  100. default: () => { },
  101. },
  102. downStyle: {
  103. type: Object,
  104. default: () => { },
  105. },
  106. pageSize: {
  107. type: Number,
  108. default: 20,
  109. },
  110. shouldReset: {
  111. type: Boolean,
  112. default: true
  113. },
  114. fastFilter: {
  115. type: Function,
  116. default: () => () => true
  117. },
  118. },
  119. data () {
  120. return {
  121. page: 0,
  122. queryId: '',
  123. noMore: false,
  124. loading: false,
  125. tableCols: [], // 表头数据
  126. tableData: [], // 表格数据
  127. tableColsCopy: [], // 表头数据缓存
  128. tableDataFilters: {}, // 表头-下拉数据
  129. filterValues: {}, // 表头-下拉-选中数据
  130. tableDataCopy: [], // 缓存table数据
  131. tableGroups: [], // 表格分组数据
  132. colShowFilter: '', // 表头-下拉-箭头
  133. spanArr: [], // 表格分组数据缓存
  134. pos: 0, // 表格分组计数
  135. dataContent: [],
  136. authBtns: [],
  137. authBtnCol: [],
  138. authBtnColName: [],
  139. tableArrs: [], // 重组table-表头下拉
  140. tableOptions: {}, // 弹框-下来数据缓存
  141. showSummary: false, // 是否显示统计
  142. tableDataSortRules: {},
  143. tableCath: [],
  144. leaveCount: 0,
  145. arriveCount: 0,
  146. checkPath: ['/newDeparture', '/newTransfer/in', '/newTransfer/out', '/newArrival'],
  147. hasSetTableScroll: false,
  148. }
  149. },
  150. computed: {
  151. // 设置表头-下拉-选中数据
  152. fastFilteredTableData () {
  153. return this.tableData.filter(this.fastFilter)
  154. },
  155. dealedTableData () {
  156. const filtered = this.fastFilteredTableData.filter(item => {
  157. let flag = true
  158. Object.entries(this.filterValues).forEach(([key, arr]) => {
  159. if (arr.length && !arr.includes(String(item[key]))) {
  160. flag = false
  161. }
  162. })
  163. return flag
  164. })
  165. const sortRules = Object.entries(this.tableDataSortRules).reduce(
  166. (pre, [key, value]) => {
  167. if (value) {
  168. pre[0].push(key)
  169. value = value === 'ascending' ? 'asc' : 'desc'
  170. pre[1].push(value)
  171. }
  172. return pre
  173. },
  174. [[], []]
  175. )
  176. return this._.orderBy(filtered, sortRules[0], sortRules[1])
  177. },
  178. tableHeight () {
  179. return 100
  180. },
  181. fromDataType () {
  182. return function (type) {
  183. if (type) {
  184. return type.replace(/\([^\)]*\)/g, '')
  185. }
  186. }
  187. },
  188. },
  189. watch: {
  190. tableTag: {
  191. async handler (val) {
  192. this.dataContent = _.cloneDeep(val)
  193. delete this.dataContent.shouldReset
  194. this.restTable()
  195. if (val.shouldReset) {
  196. this.$emit('update:shouldReset', true)
  197. await this.$nextTick()
  198. this.hasSetTableScroll = false
  199. }
  200. this.load()
  201. },
  202. deep: true,
  203. }
  204. },
  205. created () {
  206. if (this.AauthTable && this.AauthTable.length) {
  207. const t = this.AauthTable.filter(item => item.auth_name == this.tableName)
  208. const obj = t[0]
  209. this.AqueryParams = obj
  210. this.AqueryId = obj.queryTemplateID
  211. this.AauthId = obj.auth_id
  212. }
  213. this.getColumnData()
  214. },
  215. mounted () {
  216. this.setCellClick()
  217. },
  218. updated () {
  219. this.$refs['table']?.doLayout()
  220. },
  221. methods: {
  222. // 获取表头数据
  223. async getColumnData () {
  224. try {
  225. const { code, returnData } = await this.getQueryList(
  226. SERVICE_ID.sysUserAuthId,
  227. [
  228. {
  229. user_id: getToken('userid'),
  230. auth_id: this.AauthId,
  231. },
  232. ]
  233. )
  234. if (code == 0) {
  235. if (returnData && returnData.length) {
  236. if (!this.istableCol) {
  237. sessionStorage.setItem('tableColumns', JSON.stringify(returnData))
  238. this.$store.dispatch('auth/changeAuthMsg', returnData)
  239. }
  240. const msgDatas = returnData.filter(item => item.needShow)
  241. const msgCounts = msgDatas.filter(item => item.needCount)
  242. if (msgCounts.length) {
  243. this.showSummary = true
  244. }
  245. const msgDatasShows = formatOrder(msgDatas)
  246. this.tableCath = msgDatasShows
  247. if (this.istableChild) {
  248. const datas = _.cloneDeep(msgDatasShows)
  249. const cache = {}
  250. const indices = []
  251. const others = []
  252. datas.forEach(item => {
  253. if (!cache[item.groupName] && item.groupName) {
  254. cache[item.groupName] = item.groupName
  255. indices.push(item)
  256. } else {
  257. const newItem = _.cloneDeep(item)
  258. others.push(newItem)
  259. }
  260. })
  261. indices.map((item, index) => {
  262. item.tabIndex = index
  263. })
  264. others.forEach(item => {
  265. indices.forEach(p => {
  266. if (item.groupName == p.groupName && item.groupName) {
  267. item.tabIndex = p.tabIndex
  268. }
  269. })
  270. })
  271. indices.forEach(item => {
  272. item.children = [
  273. _.cloneDeep(item),
  274. ...this.formatCaps(item.tabIndex, others),
  275. ]
  276. })
  277. this.tableCols = _.cloneDeep(indices)
  278. } else {
  279. this.tableCols = _.cloneDeep(msgDatasShows)
  280. }
  281. this.tableColsCopy = _.cloneDeep(this.tableCols)
  282. this.initTableCols()
  283. this.setTableCols()
  284. }
  285. } else {
  286. this.$message.error('获取表头数据失败')
  287. }
  288. } catch (error) {
  289. console.log(error)
  290. }
  291. },
  292. setTableCols () {
  293. this.tableCath.forEach(({ columnName, needFilters, needSort }) => {
  294. if (needFilters) {
  295. this.$set(this.tableDataFilters, columnName, [])
  296. this.$set(this.filterValues, columnName, [])
  297. }
  298. if (needSort) {
  299. this.$set(this.tableDataSortRules, columnName, '')
  300. }
  301. })
  302. },
  303. formatCaps (order, arr) {
  304. const datas = []
  305. for (let i = 0; i < arr.length; i++) {
  306. const element = arr[i]
  307. if (element['tabIndex'] == order) {
  308. datas.push(element)
  309. }
  310. }
  311. return datas
  312. },
  313. // 获取表格数据
  314. async getQuery (id, dataContent = this.dataContent, page, pageSize) {
  315. try {
  316. if (this.shouldReset) {
  317. this.loading = true
  318. }
  319. this.$emit('update:shouldReset', false)
  320. await this.$nextTick()
  321. const { code, returnData } = await this.getQueryListAuth(
  322. id,
  323. dataContent,
  324. page,
  325. pageSize
  326. )
  327. if (code == 0) {
  328. let tableData = []
  329. if (returnData.length < pageSize) {
  330. this.noMore = true
  331. if (returnData.length === 0) {
  332. this.page--
  333. this.loading = false
  334. }
  335. }
  336. if (this.shouldReset) {
  337. tableData = [...this.tableData, ...returnData]
  338. this.tableData.push(...returnData)
  339. } else {
  340. tableData = [...returnData]
  341. this.noMore = true
  342. }
  343. this.$emit('tableLoad', [...tableData])
  344. this.initTableData(tableData)
  345. await this.$nextTick()
  346. this.setTableScroll()
  347. this.loading = false
  348. } else {
  349. throw new Error('获取表格数据失败')
  350. }
  351. } catch (error) {
  352. this.page--
  353. this.loading = false
  354. this.$message.error(error.message)
  355. }
  356. },
  357. restTable () {
  358. this.loading = false
  359. this.page = 0
  360. this.noMore = false
  361. if (this.shouldReset) {
  362. this.tableData = []
  363. }
  364. },
  365. load () {
  366. if (this.tableTag && Object.keys(this.tableTag).length) {
  367. if (this.noMore || this.loading) {
  368. return
  369. }
  370. if (this.AqueryParams && this.AqueryParams.queryparams) {
  371. const newData = _.cloneDeep(this.tableTag)
  372. delete newData.shouldReset
  373. const paramsType = typeof this.AqueryParams.queryparams
  374. if (paramsType == 'string') {
  375. const dataObj = {}
  376. const paramsData = this.AqueryParams.queryparams.split(',')
  377. if (paramsData && paramsData.length) {
  378. for (const key in newData) {
  379. paramsData.map(item => {
  380. if (key === item) {
  381. dataObj[item] = newData[key]
  382. } else {
  383. if (item.includes('=')) {
  384. const newItem = item.split('=')
  385. if (key === newItem[0]) {
  386. dataObj[newItem[1]] = newData[key]
  387. }
  388. }
  389. }
  390. })
  391. }
  392. this.dataContent = dataObj
  393. }
  394. }
  395. }
  396. this.getQuery(
  397. this.AqueryId,
  398. this.dataContent,
  399. ++this.page,
  400. this.pageSize
  401. )
  402. }
  403. },
  404. setCellClick () {
  405. let table = null
  406. const { auth_id } = this.$route.meta
  407. const { arrs } = getAuthData(auth_id)
  408. if (this.tableName) {
  409. table = this.AauthTable.filter(item => item.auth_name == this.tableName)
  410. } else {
  411. table = arrs.filter(item => item.auth_type == 4)
  412. }
  413. if (table && table.length) {
  414. const obj = table[0]
  415. const { arrs } = getAuthData(obj.auth_id)
  416. this.authBtnCol = arrs.filter(item => Number(item.service_type) == 6)
  417. if (this.authBtnCol.length) {
  418. this.authBtnCol.forEach(item => {
  419. this.authBtnColName.push(item.relation_data)
  420. })
  421. }
  422. }
  423. },
  424. // 初始化表格
  425. initTableData (tableData) {
  426. tableData.forEach(async row => {
  427. if (row.needGroup) {
  428. this.tableGroups.push(row.columnName)
  429. }
  430. })
  431. const now = new Date()
  432. if (this.$route.path == '/newDeparture') {
  433. this.leaveCount = 0
  434. const nTableData = [...tableData]
  435. const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
  436. cData.forEach(row => {
  437. if (row.abnormalState === 'CAN') {
  438. row.canceled = 'Y'
  439. } else if (row.normalState === 'DEP' || row.actualTakeOffTime) {
  440. row.hasTakenOff = 'Y'
  441. this.leaveCount++
  442. }
  443. })
  444. this.tableData = _.orderBy(cData, ['canceled', 'hasTakenOff', 'scheduleTakeOffTime'], ['desc', 'asc', 'asc']);
  445. }
  446. if (this.$route.path == '/newArrival') {
  447. this.arriveCount = 0
  448. const nTableData = [...tableData]
  449. const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
  450. cData.forEach(row => {
  451. if (row.abnormalState === 'CAN') {
  452. row.canceled = 'Y'
  453. } else if (row.normalState === 'ARR' || row.actualLandInTime) {
  454. row.hasLanded = 'Y'
  455. this.arriveCount++
  456. }
  457. })
  458. this.tableData = _.orderBy(cData, ['canceled', 'hasLanded', 'actualLandInTime'], ['desc', 'asc', 'asc'])
  459. }
  460. if (this.$route.path.startsWith('/newTransfer')) {
  461. this.leaveCount = 0
  462. const nTableData = [...tableData]
  463. nTableData.forEach(row => {
  464. if (row.departure_flights_leave_date && new Date(row.departure_flights_leave_date) < now) {
  465. row.hasTakenOff = 'Y'
  466. this.leaveCount++
  467. }
  468. })
  469. this.tableData = _.orderBy(nTableData, ['departure_flights_leave_date', 'normalState'], ['asc', 'desc'])
  470. }
  471. const filters = this.setTableFilters(this.tableData, this.tableDataFilters)
  472. this.tableDataFilters = _.cloneDeep(filters)
  473. this.tableGroup(this.tableData)
  474. },
  475. setTableFilters (tableData, filters) {
  476. const tempSets = {}
  477. Object.keys(filters).forEach(key => {
  478. tempSets[key] = new Set()
  479. })
  480. tableData.forEach(item => {
  481. Object.keys(tempSets).forEach(key => {
  482. ; (item[key] ?? '') !== '' && tempSets[key].add(String(item[key]))
  483. })
  484. })
  485. Object.keys(tempSets).forEach(key => {
  486. filters[key] = _.orderBy(
  487. [...tempSets[key]].map(value => ({
  488. text: value,
  489. value,
  490. })),
  491. o => o.value
  492. )
  493. })
  494. return filters
  495. },
  496. // 分组
  497. tableGroup (tableData) {
  498. const spanArr = []
  499. let pos = 0
  500. let ifYj = this.tableGroups[0]
  501. for (let i = 0; i < tableData.length; i++) {
  502. if (i === 0) {
  503. spanArr.push(1)
  504. } else {
  505. if (tableData[i][ifYj] === tableData[i - 1][ifYj]) {
  506. spanArr[pos] += 1
  507. spanArr.push(0)
  508. } else {
  509. spanArr.push(1)
  510. pos = i
  511. }
  512. }
  513. }
  514. this.spanArr = spanArr
  515. this.pos = pos
  516. },
  517. setTableScroll() {
  518. const count = Math.max(this.leaveCount, this.arriveCount)
  519. if ( this.hasSetTableScroll || count === 0) {
  520. return
  521. }
  522. const table = this.$refs['table'].$el
  523. const scrollParent = table.querySelector('.el-table__body-wrapper')
  524. if (scrollParent.scrollHeight <= scrollParent.offsetHeight) {
  525. return
  526. }
  527. const lastRow = table.querySelectorAll('.el-table__body tr')[count - 1]
  528. setTimeout(() => {
  529. const scrollMid = lastRow.offsetTop + lastRow.offsetHeight - scrollParent.offsetHeight / 2
  530. const scrollMax = scrollParent.scrollHeight - scrollParent.offsetHeight
  531. if (scrollMid > 0) {
  532. const scrollHeight = Math.min(scrollMid, scrollMax)
  533. scrollParent.scrollTo(0, scrollHeight)
  534. }
  535. }, 0)
  536. this.hasSetTableScroll = true
  537. },
  538. popoverShowHandler (prop) {
  539. this.colShowFilter = prop
  540. },
  541. popoverHideHandler () {
  542. this.colShowFilter = ''
  543. },
  544. // 获取弹框-下拉数据
  545. async getSelectData (id) {
  546. // name ? [name] : name === null ? [null]: [],
  547. const { code, returnData } = await this.getQueryList(id, {})
  548. if (code == 0) {
  549. return returnData
  550. } else {
  551. return []
  552. }
  553. },
  554. // 设置表头-下拉-箭头样式
  555. arrowClass () {
  556. return function (prop) {
  557. const classes = []
  558. if (this.colShowFilter === prop) {
  559. classes.push('arrow-active')
  560. }
  561. if (
  562. Object.entries(this.tableDataFilters).find(
  563. ([key, arr]) => this.filterValues[prop]
  564. )
  565. ) {
  566. classes.push('arrow-blue')
  567. }
  568. return classes.join(' ')
  569. }
  570. },
  571. // 合计
  572. getSummaries (param) {
  573. const { columns, data } = param
  574. const sums = []
  575. columns.forEach((column, index) => {
  576. if (index === 0) {
  577. sums[index] = '合计:' + data.length
  578. return
  579. }
  580. this.tableCath.forEach(p => {
  581. if (column.property == p.columnName && p.needCount) {
  582. const values = data.map(item => Number(item[column.property]))
  583. if (!values.every(value => isNaN(value))) {
  584. sums[index] = values.reduce((prev, curr) => {
  585. const value = Number(curr)
  586. if (!isNaN(value)) {
  587. return prev + curr
  588. } else {
  589. return prev
  590. }
  591. }, 0)
  592. sums[index] += ''
  593. }
  594. }
  595. })
  596. })
  597. return sums
  598. },
  599. // 分组
  600. tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
  601. if (this.tableGroups.includes(column['property'])) {
  602. const _row = this.spanArr[rowIndex]
  603. const _col = _row > 0 ? 1 : 0
  604. return {
  605. rowspan: _row,
  606. colspan: _col,
  607. }
  608. }
  609. },
  610. // 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
  611. headerCellClass ({ row, column, rowIndex, columnIndex }) {
  612. const classes = []
  613. const rule = this.tableDataSortRules[column.property]
  614. if (rule) {
  615. classes.push(rule)
  616. }
  617. return classes.join(' ')
  618. },
  619. // 表格-设置单元格样式
  620. cellClass ({ row, column, rowIndex, columnIndex }) {
  621. if (this.authBtnColName.includes(column.property) && Number(row[column.property]) !== 0) {
  622. return 'is-click-btn'
  623. }
  624. if (this.$route.path == '/newDeparture') {
  625. if (column.property === 'NO_check_number' && Number(row['NO_check_number']) > 0) {
  626. return 'cell-toUnload'
  627. }
  628. }
  629. },
  630. // 表格-设置行样式
  631. rowClass ({ row, rowIndex }) {
  632. const classes = []
  633. if (this.checkPath.includes(this.$route.path)) {
  634. const { abnormalState } = row
  635. if (abnormalState) {
  636. if (abnormalState == 'DLY') {
  637. classes.push('bgl-delayed')
  638. }
  639. if (abnormalState == 'CAN') {
  640. classes.push('bgl-canceled')
  641. }
  642. }
  643. if (row.hasTakenOff === 'Y' || row.hasLanded === 'Y') {
  644. classes.push('bgl-hui')
  645. }
  646. if (rowIndex === this.leaveCount - 1 || rowIndex === this.arriveCount - 1) {
  647. classes.push("redBorder");
  648. }
  649. }
  650. return classes
  651. },
  652. // 表格-单元格点击
  653. cellClick (row, column) {
  654. const dataBtns = this.authBtnCol
  655. if (dataBtns && dataBtns.length) {
  656. const clickBtn = dataBtns.filter(
  657. item => item.relation_data == column.property
  658. )[0]
  659. if (clickBtn) {
  660. const { open_method, route_info, pass_parameters, relation_data } = clickBtn
  661. if (Number(open_method) === 2 && Number(row[relation_data]) !== 0) {
  662. if (pass_parameters) {
  663. const query = pass_parameters.split(',')
  664. const obj = {}
  665. query.forEach(key => {
  666. obj[key] = row[key]
  667. })
  668. if (['Inbound_flight_number'].includes(relation_data)) {
  669. obj.outAirport = obj.inbound_flights_departure_airport
  670. obj.landAirport = obj.current_airport
  671. delete obj.current_airport
  672. delete obj.inbound_flights_departure_airport
  673. }
  674. if (['departure_flights_number', 'departure_flights_transferred_bags_number', 'Inbound_baggage_number'].includes(relation_data)) {
  675. obj.outAirport = obj.current_airport
  676. obj.landAirport = obj.departure_flights_destination_airport
  677. delete obj.current_airport
  678. delete obj.departure_flights_destination_airport
  679. }
  680. this.$router.push({
  681. path: route_info,
  682. query: obj,
  683. })
  684. }
  685. }
  686. }
  687. }
  688. },
  689. // 导出
  690. exportHandler () {
  691. const table = this.$refs['table'].$el.cloneNode(true)
  692. const fileName = `${this.downName || this.AqueryParams.auth_name}.xlsx`
  693. exportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
  694. },
  695. formatter (row, column, cellValue, index) {
  696. let sameColumn = null
  697. this.tableCols.some(col => {
  698. if (col.columnName === column.property) {
  699. sameColumn = col
  700. return true
  701. } else if (col.children) {
  702. col.children.some(childCol => {
  703. if (childCol.columnName === column.property) {
  704. sameColumn = childCol
  705. return true
  706. }
  707. })
  708. }
  709. })
  710. if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
  711. return (cellValue ?? '').replace('T', '\n')
  712. }
  713. return cellValue
  714. },
  715. },
  716. }
  717. </script>
  718. <style lang="scss" scoped>
  719. .newQueryTable {
  720. height: 100%;
  721. position: relative;
  722. ::v-deep .table {
  723. .is-click-btn {
  724. .cell {
  725. color: #409eff;
  726. cursor: pointer;
  727. position: relative;
  728. }
  729. }
  730. .cell {
  731. color: #000;
  732. text-align: center;
  733. white-space: pre-line;
  734. padding: 0;
  735. .el-tooltip {
  736. white-space: nowrap;
  737. text-overflow: ellipsis;
  738. overflow: hidden;
  739. line-height: 34px;
  740. }
  741. }
  742. tr.bgl-hui td {
  743. background: #d2d6df;
  744. }
  745. tr.bgl-delayed td {
  746. background: #fcf0b1;
  747. }
  748. tr.bgl-canceled td {
  749. background: #f7babe;
  750. }
  751. .redBorder {
  752. position: relative;
  753. &::after {
  754. content: "";
  755. position: absolute;
  756. left: 0;
  757. bottom: 0;
  758. width: 100%;
  759. height: 2px;
  760. background: #e83f82;
  761. }
  762. }
  763. td.cell-toUnload {
  764. background: lightcoral !important;
  765. position: relative;
  766. &::after {
  767. content: "";
  768. display: block;
  769. width: 100%;
  770. height: 100%;
  771. position: absolute;
  772. top: 0;
  773. left: 0;
  774. border: 2px dashed red;
  775. }
  776. }
  777. }
  778. .btns {
  779. position: absolute;
  780. top: -50px;
  781. right: 32px;
  782. z-index: 10;
  783. }
  784. .down-btns {
  785. position: absolute;
  786. top: -50px;
  787. right: 72px;
  788. z-index: 10;
  789. }
  790. }
  791. </style>