当前位置:   article > 正文

Element ui Table组件动态控制列的显示隐藏_elementui el-table自定义switch开关控制显示隐藏列

elementui el-table自定义switch开关控制显示隐藏列

 最近遇到一个需求,要求可以动态控制 table 列表中的列的显示与隐藏,并且将选中的列进行存储,下次进入页面仍展示上次勾选的列。

经过查阅资料,实现了这个功能,创建一个Table.vue文件,组件封装代码如下:

  1. <template>
  2. <div>
  3. <el-table
  4. ref="dataTable"
  5. :data="tableData"
  6. header-cell-class-name="headerCell"
  7. cell-class-name="contentCell"
  8. fit
  9. border
  10. lazy
  11. size="mini"
  12. >
  13. <!-- 索引列 -->
  14. <el-table-column type="index" width="50" />
  15. <!-- 描述和操作列 -->
  16. <template v-for="(item, index) in tableHead">
  17. <el-table-column
  18. v-if="tableHead[index].isShow"
  19. :key="index"
  20. :prop="item.columnName"
  21. :label="item.columnTitle"
  22. align="center"
  23. >
  24. <template slot-scope="scope">
  25. <div>{{scope.row[item.columnName]}}</div>
  26. </template>
  27. </el-table-column>
  28. </template>
  29. <!-- 切换显示隐藏列 -->
  30. <el-table-column width="40">
  31. <template slot="header" slot-scope="scope">
  32. <a href="javascript:;">
  33. <el-popover :ref="`popover-${scope.$index}`" width="150" placement="left" trigger="click">
  34. <el-checkbox-group v-model="columnSelecteds">
  35. <el-checkbox
  36. v-for="item in tableHead"
  37. v-show="item.columnTitle"
  38. :key="item.columnTitle"
  39. :label="item.columnTitle"
  40. />
  41. </el-checkbox-group>
  42. <i slot="reference" class="el-icon-s-grid" />
  43. </el-popover>
  44. </a>
  45. </template>
  46. </el-table-column>
  47. </el-table>
  48. </div>
  49. </template>
  50. <script>
  51. export default {
  52. props: {
  53. tableData: {
  54. type: Array,
  55. required: true,
  56. default: () => []
  57. },
  58. tableHead: {
  59. type: Array,
  60. required: true,
  61. default: () => []
  62. }
  63. },
  64. data() {
  65. return {
  66. columnSelecteds: [] // 已选择的项
  67. }
  68. },
  69. watch: {
  70. /* @title 监听列显示隐藏**/
  71. columnSelecteds(newArrayVal) {
  72. // 计算为被选中的列标题数组
  73. var nonSelecteds = this.tableHead
  74. .filter((item) => newArrayVal.indexOf(item.columnTitle) === -1)
  75. .map((item) => item.columnTitle)
  76. // 根据计算结果进行表格重绘
  77. this.tableHead.filter((item) => {
  78. const isNonSelected = nonSelecteds.indexOf(item.columnTitle) !== -1
  79. if (isNonSelected) {
  80. // 隐藏未选中的列
  81. item.isShow = false
  82. this.$nextTick(() => {
  83. this.$refs.dataTable.doLayout()
  84. })
  85. } else {
  86. // 显示已选中的列
  87. item.isShow = true
  88. this.$nextTick(() => {
  89. this.$refs.dataTable.doLayout()
  90. })
  91. }
  92. })
  93. localStorage.setItem('columnSelecteds', JSON.stringify(newArrayVal))
  94. }
  95. },
  96. created() {
  97. // 初始化要显示的列
  98. if (JSON.parse(localStorage.getItem('columnSelecteds')) && JSON.parse(localStorage.getItem('columnSelecteds')).length) {
  99. this.columnSelecteds = JSON.parse(localStorage.getItem('columnSelecteds'))
  100. } else {
  101. this.tableHead.forEach((item) => {
  102. if (item.isShow) {
  103. this.columnSelecteds.push(item.columnTitle)
  104. }
  105. })
  106. localStorage.setItem('columnSelecteds', JSON.stringify(this.columnSelecteds))
  107. }
  108. }
  109. }
  110. </script>
  111. <style lang="scss" scoped>
  112. ::v-deep .headerCell {
  113. padding: 5px 0;
  114. background: #f5f7fa;
  115. color: #606266;
  116. }
  117. ::v-deep .contentCell {
  118. padding: 5px 0;
  119. text-align: center;
  120. }
  121. ::v-deep .el-table .cell{
  122. white-space: nowrap;
  123. }
  124. .el-checkbox:last-of-type{
  125. margin-right: 30px;
  126. }
  127. </style>

 组件用法如下,新建一个index.vue,将Table组件引入使用:

  1. <template>
  2. <div>
  3. <Table
  4. :table-data="tableData"
  5. :table-head="tableHead"
  6. />
  7. </div>
  8. </template>
  9. <script>
  10. import Table from './components/Table'
  11. export default {
  12. components: {
  13. Table,
  14. },
  15. data() {
  16. return {
  17. // 表头数据
  18. tableHead: [{
  19. 'columnName': 'name',
  20. 'columnTitle': '姓名',
  21. 'isShow': true
  22. }, {
  23. 'columnName': 'date',
  24. 'columnTitle': '日期',
  25. 'isShow': false
  26. }, {
  27. 'columnName': 'address',
  28. 'columnTitle': '地址',
  29. 'isShow': true
  30. }],
  31. // 表格数据
  32. tableData: [{
  33. date: '2016-05-02',
  34. name: '王小虎',
  35. address: '上海市普陀区金沙江路 1518 弄'
  36. }, {
  37. date: '2016-05-04',
  38. name: '王小虎',
  39. address: '上海市普陀区金沙江路 1517 弄'
  40. }, {
  41. date: '2016-05-01',
  42. name: '王小虎',
  43. address: '上海市普陀区金沙江路 1519 弄'
  44. }, {
  45. date: '2016-05-03',
  46. name: '王小虎',
  47. address: '上海市普陀区金沙江路 1516 弄'
  48. }]
  49. }
  50. }
  51. }
  52. </script>

效果如下图:

默认只展示姓名和地址列

缓存勾选的列 

 可以将日期列选中,在列表中进行展示

 缓存勾选的列 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/740119
推荐阅读
相关标签
  

闽ICP备14008679号