table.vue 24 KB

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