table.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  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. }
  148. },
  149. computed: {
  150. // 设置表头-下拉-选中数据
  151. fastFilteredTableData() {
  152. return this.tableData.filter(this.fastFilter)
  153. },
  154. dealedTableData () {
  155. const filtered = this.fastFilteredTableData.filter(item => {
  156. let flag = true
  157. Object.entries(this.filterValues).forEach(([key, arr]) => {
  158. if (arr.length && !arr.includes(String(item[key]))) {
  159. flag = false
  160. }
  161. })
  162. return flag
  163. })
  164. const sortRules = Object.entries(this.tableDataSortRules).reduce(
  165. (pre, [key, value]) => {
  166. if (value) {
  167. pre[0].push(key)
  168. value = value === 'ascending' ? 'asc' : 'desc'
  169. pre[1].push(value)
  170. }
  171. return pre
  172. },
  173. [[], []]
  174. )
  175. return this._.orderBy(filtered, sortRules[0], sortRules[1])
  176. },
  177. tableHeight () {
  178. return 100
  179. },
  180. fromDataType () {
  181. return function (type) {
  182. if (type) {
  183. return type.replace(/\([^\)]*\)/g, '')
  184. }
  185. }
  186. },
  187. },
  188. watch: {
  189. tableTag: {
  190. async handler (val) {
  191. this.dataContent = _.cloneDeep(val)
  192. delete this.dataContent.shouldReset
  193. this.restTable()
  194. if (val.shouldReset) {
  195. this.$emit('update:shouldReset', true)
  196. await this.$nextTick()
  197. }
  198. this.load()
  199. },
  200. deep: true,
  201. },
  202. },
  203. created () {
  204. if (this.AauthTable && this.AauthTable.length) {
  205. const t = this.AauthTable.filter(item => item.auth_name == this.tableName)
  206. const obj = t[0]
  207. this.AqueryParams = obj
  208. this.AqueryId = obj.queryTemplateID
  209. this.AauthId = obj.auth_id
  210. }
  211. this.getColumnData()
  212. },
  213. mounted () {
  214. this.setCellClick()
  215. },
  216. updated () {
  217. this.$refs['table']?.doLayout()
  218. },
  219. methods: {
  220. // 获取表头数据
  221. async getColumnData () {
  222. try {
  223. const { code, returnData } = await this.getQueryList(
  224. SERVICE_ID.sysUserAuthId,
  225. [
  226. {
  227. user_id: getToken('userid'),
  228. auth_id: this.AauthId,
  229. },
  230. ]
  231. )
  232. if (code == 0) {
  233. if (returnData && returnData.length) {
  234. if (!this.istableCol) {
  235. sessionStorage.setItem('tableColumns', JSON.stringify(returnData))
  236. this.$store.dispatch('auth/changeAuthMsg', returnData)
  237. }
  238. const msgDatas = returnData.filter(item => item.needShow)
  239. const msgCounts = msgDatas.filter(item => item.needCount)
  240. if (msgCounts.length) {
  241. this.showSummary = true
  242. }
  243. const msgDatasShows = formatOrder(msgDatas)
  244. this.tableCath = msgDatasShows
  245. if (this.istableChild) {
  246. const datas = _.cloneDeep(msgDatasShows)
  247. const cache = {}
  248. const indices = []
  249. const others = []
  250. datas.forEach(item => {
  251. if (!cache[item.groupName] && item.groupName) {
  252. cache[item.groupName] = item.groupName
  253. indices.push(item)
  254. } else {
  255. const newItem = _.cloneDeep(item)
  256. others.push(newItem)
  257. }
  258. })
  259. indices.map((item, index) => {
  260. item.tabIndex = index
  261. })
  262. others.forEach(item => {
  263. indices.forEach(p => {
  264. if (item.groupName == p.groupName && item.groupName) {
  265. item.tabIndex = p.tabIndex
  266. }
  267. })
  268. })
  269. indices.forEach(item => {
  270. item.children = [
  271. _.cloneDeep(item),
  272. ...this.formatCaps(item.tabIndex, others),
  273. ]
  274. })
  275. this.tableCols = _.cloneDeep(indices)
  276. } else {
  277. this.tableCols = _.cloneDeep(msgDatasShows)
  278. }
  279. this.tableColsCopy = _.cloneDeep(this.tableCols)
  280. this.initTableCols()
  281. this.setTableCols()
  282. }
  283. } else {
  284. this.$message.error('获取表头数据失败')
  285. }
  286. } catch (error) {
  287. console.log(error)
  288. }
  289. },
  290. setTableCols () {
  291. this.tableCath.forEach(({ columnName, needFilters, needSort }) => {
  292. if (needFilters) {
  293. this.$set(this.tableDataFilters, columnName, [])
  294. this.$set(this.filterValues, columnName, [])
  295. }
  296. if (needSort) {
  297. this.$set(this.tableDataSortRules, columnName, '')
  298. }
  299. })
  300. },
  301. formatCaps (order, arr) {
  302. const datas = []
  303. for (let i = 0; i < arr.length; i++) {
  304. const element = arr[i]
  305. if (element['tabIndex'] == order) {
  306. datas.push(element)
  307. }
  308. }
  309. return datas
  310. },
  311. // 获取表格数据
  312. async getQuery (id, dataContent = this.dataContent, page, pageSize) {
  313. try {
  314. if (this.shouldReset) {
  315. this.loading = true
  316. }
  317. this.$emit('update:shouldReset', false)
  318. await this.$nextTick()
  319. const { code, returnData } = await this.getQueryListAuth(
  320. id,
  321. dataContent,
  322. page,
  323. pageSize
  324. )
  325. if (code == 0) {
  326. let tableData = []
  327. if (returnData.length < pageSize) {
  328. this.noMore = true
  329. if (returnData.length === 0) {
  330. this.page--
  331. this.loading = false
  332. }
  333. }
  334. if (this.shouldReset) {
  335. tableData = [...this.tableData, ...returnData]
  336. this.tableData.push(...returnData)
  337. } else {
  338. tableData = [...returnData]
  339. this.noMore = true
  340. }
  341. this.$emit('tableLoad', [...tableData])
  342. setTimeout(() => {
  343. this.initTableData(tableData)
  344. this.loading = false
  345. }, 100)
  346. } else {
  347. throw new Error('获取表格数据失败')
  348. }
  349. } catch (error) {
  350. this.page--
  351. this.loading = false
  352. this.$message.error(error.message)
  353. }
  354. },
  355. restTable () {
  356. this.loading = false
  357. this.page = 0
  358. this.noMore = false
  359. if (this.shouldReset) {
  360. this.tableData = []
  361. }
  362. },
  363. load () {
  364. if (this.tableTag && Object.keys(this.tableTag).length) {
  365. if (this.noMore || this.loading) {
  366. return
  367. }
  368. if (this.AqueryParams && this.AqueryParams.queryparams) {
  369. const newData = _.cloneDeep(this.tableTag)
  370. delete newData.shouldReset
  371. const paramsType = typeof this.AqueryParams.queryparams
  372. if (paramsType == 'string') {
  373. const dataObj = {}
  374. const paramsData = this.AqueryParams.queryparams.split(',')
  375. if (paramsData && paramsData.length) {
  376. for (const key in newData) {
  377. paramsData.map(item => {
  378. if (key === item) {
  379. dataObj[item] = newData[key]
  380. } else {
  381. if (item.includes('=')) {
  382. const newItem = item.split('=')
  383. if (key === newItem[0]) {
  384. dataObj[newItem[1]] = newData[key]
  385. }
  386. }
  387. }
  388. })
  389. }
  390. this.dataContent = dataObj
  391. }
  392. }
  393. }
  394. this.getQuery(
  395. this.AqueryId,
  396. this.dataContent,
  397. ++this.page,
  398. this.pageSize
  399. )
  400. }
  401. },
  402. setCellClick () {
  403. let table = null
  404. const { auth_id } = this.$route.meta
  405. const { arrs } = getAuthData(auth_id)
  406. if (this.tableName) {
  407. table = this.AauthTable.filter(item => item.auth_name == this.tableName)
  408. } else {
  409. table = arrs.filter(item => item.auth_type == 4)
  410. }
  411. if (table && table.length) {
  412. const obj = table[0]
  413. const { arrs } = getAuthData(obj.auth_id)
  414. this.authBtnCol = arrs.filter(item => Number(item.service_type) == 6)
  415. if (this.authBtnCol.length) {
  416. this.authBtnCol.forEach(item => {
  417. this.authBtnColName.push(item.relation_data)
  418. })
  419. }
  420. }
  421. },
  422. // 初始化表格
  423. initTableData (tableData) {
  424. this.tableDataCopy = _.cloneDeep(tableData)
  425. const datas = _.cloneDeep(this.tableColsCopy)
  426. // const reqUts = [];
  427. datas.forEach(async item => {
  428. if (item.needGroup) {
  429. this.tableGroups.push(item.columnName)
  430. }
  431. // if (item.listqueryTemplateID || item.listqueryTemplateID == 0) {
  432. // this.tableArrs.push(item.columnName);
  433. // if (!this.tableOptions[item.columnName]) {
  434. // this.tableOptions[item.columnName] = await this.getSelectData(item.listqueryTemplateID);
  435. // }
  436. // }
  437. })
  438. const now = new Date()
  439. if (this.$route.path == '/newDeparture') {
  440. this.leaveCount = 0
  441. const nTableData = [...tableData]
  442. const cData = nTableData.filter(item => Number(item['NO_BSM_number']) + Number(item['check_in_baggage_number']) > 0)
  443. cData.forEach(item => {
  444. const takeOffTime = item.actualTakeOffTime || item.scheduleTakeOffTime
  445. if (takeOffTime && new Date(takeOffTime) < now) {
  446. item.hasTakenOff = 'Y'
  447. this.leaveCount++
  448. }
  449. })
  450. this.tableData = _.orderBy([...cData], ["scheduleTakeOffTime", "normalState"], ["asc", "desc"]);
  451. }
  452. if (this.$route.path == '/newArrival') {
  453. this.arriveCount = 0
  454. const nTableData = [...tableData]
  455. nTableData.forEach(item => {
  456. const landingTime = item.actualLandInTime
  457. if (landingTime && new Date(landingTime) < now) {
  458. item.hasLanded = 'Y'
  459. this.arriveCount++
  460. }
  461. })
  462. this.tableData = _.orderBy(nTableData, ['actualLandInTime', 'normalState'], ['asc', 'desc'])
  463. }
  464. if (this.$route.path.startsWith('/newTransfer')) {
  465. this.leaveCount = 0
  466. const nTableData = [...tableData]
  467. nTableData.forEach(item => {
  468. if (item.departure_flights_leave_date && new Date(item.departure_flights_leave_date) < now) {
  469. item.hasTakenOff = 'Y'
  470. this.leaveCount++
  471. }
  472. })
  473. this.tableData = _.orderBy(nTableData, ['departure_flights_leave_date', 'normalState'], ['asc', 'desc'])
  474. }
  475. const dats = this.setTableFilters(this.tableData, this.tableDataFilters)
  476. this.tableDataFilters = _.cloneDeep(dats)
  477. this.tableGroup(this.tableData)
  478. },
  479. setTableFilters (tableData, filters) {
  480. const tempSets = {}
  481. Object.keys(filters).forEach(key => {
  482. tempSets[key] = new Set()
  483. })
  484. tableData.forEach(item => {
  485. Object.keys(tempSets).forEach(key => {
  486. ; (item[key] ?? '') !== '' && tempSets[key].add(String(item[key]))
  487. })
  488. })
  489. Object.keys(tempSets).forEach(key => {
  490. filters[key] = _.orderBy(
  491. [...tempSets[key]].map(value => ({
  492. text: value,
  493. value,
  494. })),
  495. o => o.value
  496. )
  497. })
  498. return filters
  499. },
  500. // 分组
  501. tableGroup (tableData) {
  502. const spanArr = []
  503. let pos = 0
  504. let ifYj = this.tableGroups[0]
  505. for (let i = 0; i < tableData.length; i++) {
  506. if (i === 0) {
  507. spanArr.push(1)
  508. } else {
  509. if (tableData[i][ifYj] === tableData[i - 1][ifYj]) {
  510. spanArr[pos] += 1
  511. spanArr.push(0)
  512. } else {
  513. spanArr.push(1)
  514. pos = i
  515. }
  516. }
  517. }
  518. this.spanArr = spanArr
  519. this.pos = pos
  520. },
  521. popoverShowHandler (prop) {
  522. this.colShowFilter = prop
  523. },
  524. popoverHideHandler () {
  525. this.colShowFilter = ''
  526. },
  527. // 获取弹框-下拉数据
  528. async getSelectData (id) {
  529. // name ? [name] : name === null ? [null]: [],
  530. const { code, returnData } = await this.getQueryList(id, {})
  531. if (code == 0) {
  532. return returnData
  533. } else {
  534. return []
  535. }
  536. },
  537. // 设置表头-下拉-箭头样式
  538. arrowClass () {
  539. return function (prop) {
  540. const classes = []
  541. if (this.colShowFilter === prop) {
  542. classes.push('arrow-active')
  543. }
  544. if (
  545. Object.entries(this.tableDataFilters).find(
  546. ([key, arr]) => this.filterValues[prop]
  547. )
  548. ) {
  549. classes.push('arrow-blue')
  550. }
  551. return classes.join(' ')
  552. }
  553. },
  554. // 合计
  555. getSummaries (param) {
  556. const { columns, data } = param
  557. const sums = []
  558. columns.forEach((column, index) => {
  559. if (index === 0) {
  560. sums[index] = '合计:' + data.length
  561. return
  562. }
  563. this.tableCath.forEach(p => {
  564. if (column.property == p.columnName && p.needCount) {
  565. const values = data.map(item => Number(item[column.property]))
  566. if (!values.every(value => isNaN(value))) {
  567. sums[index] = values.reduce((prev, curr) => {
  568. const value = Number(curr)
  569. if (!isNaN(value)) {
  570. return prev + curr
  571. } else {
  572. return prev
  573. }
  574. }, 0)
  575. sums[index] += ''
  576. }
  577. }
  578. })
  579. })
  580. return sums
  581. },
  582. // 分组
  583. tableSpanMethod ({ row, column, rowIndex, columnIndex }) {
  584. if (this.tableGroups.includes(column['property'])) {
  585. const _row = this.spanArr[rowIndex]
  586. const _col = _row > 0 ? 1 : 0
  587. return {
  588. rowspan: _row,
  589. colspan: _col,
  590. }
  591. }
  592. },
  593. // 给表头单元格加上 ascending 或 descending 使用 element 自带的排序箭头变色
  594. headerCellClass ({ row, column, rowIndex, columnIndex }) {
  595. const classes = []
  596. const rule = this.tableDataSortRules[column.property]
  597. if (rule) {
  598. classes.push(rule)
  599. }
  600. return classes.join(' ')
  601. },
  602. // 表格-设置单元格样式
  603. cellClass ({ row, column, rowIndex, columnIndex }) {
  604. if (this.authBtnColName.includes(column.property) && Number(row[column.property]) !== 0) {
  605. return 'is-click-btn'
  606. }
  607. if (this.$route.path == '/newDeparture') {
  608. if (column.property === 'NO_check_number' && Number(row['NO_check_number']) > 0) {
  609. return 'cell-toUnload'
  610. }
  611. }
  612. },
  613. // 表格-设置行样式
  614. rowClass ({ row, rowIndex }) {
  615. const classes = []
  616. if (this.checkPath.includes(this.$route.path)) {
  617. const { abnormalState, normalState } = row
  618. if (abnormalState) {
  619. if (abnormalState == 'DLY') {
  620. classes.push('bgl-delayed')
  621. }
  622. if (abnormalState == 'CAN') {
  623. classes.push('bgl-canceled')
  624. }
  625. }
  626. // if (normalState) {
  627. // if (normalState == 'DEP' || normalState == 'ARR') {
  628. // classes.push('bgl-hui')
  629. // }
  630. // }
  631. if (row.hasTakenOff === 'Y' || row.hasLanded === 'Y') {
  632. classes.push('bgl-hui')
  633. }
  634. if (rowIndex === this.leaveCount - 1 || rowIndex === this.arriveCount - 1) {
  635. classes.push("redBorder");
  636. }
  637. }
  638. return classes
  639. },
  640. // 表格-单元格点击
  641. cellClick (row, column) {
  642. const dataBtns = this.authBtnCol
  643. if (dataBtns && dataBtns.length) {
  644. const clickBtn = dataBtns.filter(
  645. item => item.relation_data == column.property
  646. )[0]
  647. if (clickBtn) {
  648. const { open_method, route_info, pass_parameters, relation_data } = clickBtn
  649. if (Number(open_method) === 2 && Number(row[relation_data]) !== 0) {
  650. if (pass_parameters) {
  651. const query = pass_parameters.split(',')
  652. const obj = {}
  653. query.forEach(key => {
  654. obj[key] = row[key]
  655. })
  656. if (['Inbound_flight_number'].includes(relation_data)) {
  657. obj.outAirport = obj.inbound_flights_departure_airport
  658. obj.landAirport = obj.current_airport
  659. delete obj.current_airport
  660. delete obj.inbound_flights_departure_airport
  661. }
  662. if (['departure_flights_number', 'departure_flights_transferred_bags_number', 'Inbound_baggage_number'].includes(relation_data)) {
  663. obj.outAirport = obj.current_airport
  664. obj.landAirport = obj.departure_flights_destination_airport
  665. delete obj.current_airport
  666. delete obj.departure_flights_destination_airport
  667. }
  668. this.$router.push({
  669. path: route_info,
  670. query: obj,
  671. })
  672. }
  673. }
  674. }
  675. }
  676. },
  677. // 导出
  678. exportHandler () {
  679. const table = this.$refs['table'].$el.cloneNode(true)
  680. const fileName = `${this.downName || this.AqueryParams.auth_name}.xlsx`
  681. exportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
  682. },
  683. formatter (row, column, cellValue, index) {
  684. let sameColumn = null
  685. this.tableCols.some(col => {
  686. if (col.columnName === column.property) {
  687. sameColumn = col
  688. return true
  689. } else if (col.children) {
  690. col.children.some(childCol => {
  691. if (childCol.columnName === column.property) {
  692. sameColumn = childCol
  693. return true
  694. }
  695. })
  696. }
  697. })
  698. if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
  699. return (cellValue ?? '').replace('T', ' ')
  700. }
  701. return cellValue
  702. },
  703. },
  704. }
  705. </script>
  706. <style lang="scss" scoped>
  707. .newQueryTable {
  708. height: 100%;
  709. position: relative;
  710. ::v-deep .table {
  711. .is-click-btn {
  712. .cell {
  713. color: #409eff;
  714. cursor: pointer;
  715. position: relative;
  716. }
  717. }
  718. .cell {
  719. color: #000;
  720. text-align: center;
  721. white-space: nowrap;
  722. padding: 0;
  723. .el-tooltip {
  724. white-space: nowrap;
  725. text-overflow: ellipsis;
  726. overflow: hidden;
  727. line-height: 34px;
  728. }
  729. }
  730. tr.bgl-delayed td {
  731. background: #fcf0b1;
  732. }
  733. tr.bgl-canceled td {
  734. background: #f7babe;
  735. }
  736. tr.bgl-hui td {
  737. background: #d2d6df;
  738. }
  739. .redBorder {
  740. position: relative;
  741. &::after {
  742. content: "";
  743. position: absolute;
  744. left: 0;
  745. bottom: 0;
  746. width: 100%;
  747. height: 2px;
  748. background: #e83f82;
  749. }
  750. }
  751. td.cell-toUnload {
  752. background: lightcoral !important;
  753. position: relative;
  754. &::after {
  755. content: "";
  756. display: block;
  757. width: 100%;
  758. height: 100%;
  759. position: absolute;
  760. top: 0;
  761. left: 0;
  762. border: 2px dashed red;
  763. }
  764. }
  765. }
  766. .btns {
  767. position: absolute;
  768. top: -50px;
  769. right: 32px;
  770. z-index: 10;
  771. }
  772. .down-btns {
  773. position: absolute;
  774. top: -50px;
  775. right: 72px;
  776. z-index: 10;
  777. }
  778. }
  779. </style>