tableCols.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * @Author: Badguy
  3. * @Date: 2022-03-04 11:50:22
  4. * @LastEditTime: 2022-03-15 17:56:34
  5. * @LastEditors: your name
  6. * @Description: 航站视图表格通用部分
  7. * have a nice day!
  8. */
  9. export default {
  10. data() {
  11. return {
  12. // 筛选后表头
  13. tableColsCopy: [],
  14. // 列设置弹框选中
  15. checkedKeys: [],
  16. checkedKeysTemp: [],
  17. halfCheckedKeys: [],
  18. // 列设置弹框开关
  19. dialogFlag: false
  20. }
  21. },
  22. created() {
  23. this.initTableCols()
  24. },
  25. updated() {
  26. // table数据更新
  27. this.$nextTick(() => {
  28. this.$refs.table?.doLayout()
  29. })
  30. },
  31. computed: {
  32. colsCheckClass() {
  33. return this.tableCols.some(col => col.children?.length) ? 'has-children' : 'no-children'
  34. }
  35. },
  36. methods: {
  37. // 列设置-初始化
  38. initTableCols() {
  39. const that = this
  40. function setTableCols(cols) {
  41. for (const col of cols) {
  42. col.index = that.checkedKeys.length
  43. that.checkedKeys.push(that.checkedKeys.length)
  44. if (col.children?.length) {
  45. setTableCols(col.children)
  46. }
  47. }
  48. }
  49. setTableCols(this.tableCols)
  50. this.tableColsCopy = this._.cloneDeep(this.tableCols)
  51. this.checkedKeysTemp = [...this.checkedKeys]
  52. },
  53. // 列设置-确定
  54. handleCheck(data, checked) {
  55. this.checkedKeysTemp = [...checked.checkedKeys]
  56. this.halfCheckedKeys = [...checked.halfCheckedKeys]
  57. },
  58. onCheck(tableDataName = 'tableData') {
  59. if (this.dialogFlag === false) {
  60. return
  61. }
  62. this.loading = true
  63. const tableDataTemp = this._.cloneDeep(this[tableDataName])
  64. this[tableDataName] = []
  65. this.dialogFlag = false
  66. this.checkedKeys = [...this.checkedKeysTemp]
  67. this.tableColsCopy = this.colsFilter(this._.cloneDeep(this.tableCols))
  68. setTimeout(() => {
  69. if (!this[tableDataName].length) {
  70. this[tableDataName] = tableDataTemp
  71. }
  72. this.loading = false
  73. }, 1000)
  74. },
  75. colsFilter(cols) {
  76. const temp = cols.filter(col => {
  77. if (this.halfCheckedKeys.includes(col.index)) {
  78. col.children = this.colsFilter(col.children)
  79. return true
  80. } else if (this.checkedKeys.includes(col.index)) {
  81. return true
  82. }
  83. return false
  84. })
  85. return temp
  86. },
  87. // 弹框展开
  88. show() {
  89. this.dialogFlag = true
  90. },
  91. // 弹框关闭
  92. hide() {
  93. this.dialogFlag = false
  94. this.checkedKeysTemp = [...this.checkedKeys]
  95. }
  96. }
  97. }