当前位置:   article > 正文

超好用的element的el-table表格组件二次封装-附源码及讲解

el-table

前言:在很多后台管理系统开发时总会有很多表格的使用,如果我们每次都用elementui官网的el-table去写的话,调整所有表格的样式就会很麻烦,而且页面内容也会很累赘繁琐。

讲解一个我经常使用的二次封装el-table组件,该组件可以容纳很多种特定的需求并且非常简便。所有例子都是使用vue2+elementUI,如要使用vue3稍作修改即可,也可评论问我

直接上代码:

一、组件代码

  1. <template>
  2. <el-table
  3. ref="multipleTable"
  4. v-loading="tableLoading"
  5. :data="tableData"
  6. element-loading-text="拼命加载中"
  7. :height="height"
  8. element-loading-spinner="el-icon-loading"
  9. element-loading-background="rgba(20, 60, 133, 0.8)"
  10. tooltip-effect="dark"
  11. style="width: 100%; "
  12. border
  13. :row-class-name="rowClassName"
  14. :header-cell-style="{ background: '#0e3372', color: '#cccccc' }"
  15. stripe
  16. @selection-change="handleSelectionChange"
  17. >
  18. <template v-if="isSelection">
  19. <el-table-column type="selection" width="55" />
  20. </template>
  21. <template v-for="(item,index) in column">
  22. <el-table-column
  23. :key="index"
  24. :label="item.label"
  25. :prop="item.prop"
  26. :type="item.type"
  27. :width="item.width"
  28. :fixed="item.fixed"
  29. :sortable="item.sortable?true:false"
  30. :filters="item.filters"
  31. :column-key="item.columnKey"
  32. :filtered-value="item.filteredValue"
  33. :filter-multiple="item.filterMultiple"
  34. :min-width="item.minWidth"
  35. align="center"
  36. >
  37. <!-- <div class="123" v-if="item.type == ''"> -->
  38. <template v-if="item.hasOwnProperty('colunmTemplate')" :slot="item.colunmTemplate" slot-scope="scope">
  39. <slot v-if="item.theadSlot" :name="item.theadSlot" :row="scope.row" :index="index" />
  40. </template>
  41. <template slot-scope="scope">
  42. <!-- 插槽 -->
  43. <div v-if="item.dataType == 'slot'">
  44. <slot v-if="item.slot" :name="item.slot" :row="scope.row" :index="scope.$index" />
  45. </div>
  46. <!-- 进度条 -->
  47. <div v-else-if="item.dataType == 'progress'">
  48. <el-progress :percentage="Number(scope.row[item.prop])" />
  49. </div>
  50. <!-- tag -->
  51. <div v-else-if="item.dataType == 'tag'">
  52. <el-tag v-if="typeof dataTypeFn(scope.row[item.prop],item.formatData) == 'string'" :title="scope.row[item.prop] | formatters(item.formatData)" :type="formatType(scope.row[item.prop],item.formatType)">
  53. {{ scope.row[item.prop] | formatters(item.formatData) }}
  54. </el-tag>
  55. <el-tag v-for="(tag,index) in dataTypeFn(scope.row[item.prop],item.formatData)" v-else-if="typeof dataTypeFn(scope.row[item.prop],item.formatData) == 'object'" :key="index" :title="scope.row[item.prop] | formatters(item.formatData)" :type="formatType(tag,item.formatType)">
  56. {{ item.tagGroup ? tag[item.tagGroup.label]?tag[item.tagGroup.label]:tag : tag }}
  57. </el-tag>
  58. <el-tag v-else :title="scope.row[item.prop] | formatters(item.formatData)" :type="formatType(scope.row[item.prop],item.formatType)">
  59. {{ scope.row[item.prop] | formatters(item.formatData) }}
  60. </el-tag>
  61. </div>
  62. <!-- 按钮 -->
  63. <div v-else-if="item.dataType == 'option'">
  64. <el-button
  65. v-for="(o, key) in item.operation"
  66. v-show="o.showHide?o.showHide(scope.row):true"
  67. :key="key"
  68. :icon="o.icon | iconFn(scope.row)"
  69. :disabled="o.disabled?o.disabled(scope.row):false"
  70. :plain="o.plain"
  71. :type="o.type | typeFn(scope.row)"
  72. :size="o.size"
  73. @click="o.clickFun(scope.row)"
  74. >
  75. {{ o.name }}
  76.       </el-button>
  77. </div>
  78. <!-- -->
  79. <!-- 默认纯展示数据 -->
  80. <div v-else>
  81. <span v-if="!item.formatData">{{ scope.row[item.prop] }}</span>
  82. <span v-else>{{ scope.row[item.prop] | formatters(item.formatData) }}</span>
  83. </div>
  84. </template>
  85. <!-- </div> -->
  86. </el-table-column>
  87. </template>
  88. </el-table>
  89. </template>
  90. <script>
  91. export default {
  92. filters: {
  93. iconFn(val, row) {
  94. if (typeof (val) === 'function') {
  95. return val(row)
  96. } else return val
  97. },
  98. typeFn(val, row) {
  99. console.log(val,row,'11111111');
  100. if (typeof (val) === 'function') {
  101. return val(row)
  102. } else return val
  103. },
  104. describeConts(val, describeCont) {
  105. if (typeof (describeCont) === 'function') {
  106. return describeCont(val)
  107. } else return val
  108. },
  109. formatters(val, format) {
  110. if (typeof (format) === 'function') {
  111. return format(val)
  112. } else return val
  113. }
  114. },
  115. props: {
  116. isSelection: {
  117. type: Boolean,
  118. default: false
  119. },
  120. height: {
  121. type: Number,
  122. default: null
  123. },
  124. tableLoading: {
  125. type: Boolean,
  126. default: false
  127. },
  128. handleSelectionChange: {
  129. type: Function,
  130. default: () => {
  131. return () => {}
  132. }
  133. },
  134. headerCellStyle: {
  135. type: Object,
  136. default: () => {
  137. return {}
  138. }
  139. },
  140. column: {
  141. type: Array,
  142. default() {
  143. return [
  144. ]
  145. }
  146. },
  147. rowClassName: {
  148. type: Function,
  149. default: () => {
  150. }
  151. },
  152. tableData: {
  153. type: Array,
  154. default() {
  155. return []
  156. }
  157. }
  158. },
  159. methods: {
  160. formatType(val, format) {
  161. if (typeof (format) === 'function') {
  162. return format(val)
  163. } else return ''
  164. },
  165. dataTypeFn(val, format) {
  166. if (typeof (format) === 'function') {
  167. return format(val)
  168. } else return val
  169. }
  170. }
  171. }
  172. </script>
  173. <style scoped>
  174. span{
  175. white-space: pre-wrap;
  176. }
  177. /* .el-table .warning-row {
  178. background: oldlace;
  179. }
  180. .el-table .success-row {
  181. background: #f0f9eb;
  182. } */
  183. /* .app-container /deep/ .el-table, .el-table__expanded-cell {
  184. background-color: transparent;
  185. }
  186. .app-container /deep/ .el-table tr {
  187. background-color: transparent!important;
  188. }
  189. .app-container /deep/ .el-table--enable-row-transition .el-table__body td, .el-table .cell{
  190. background-color: transparent;
  191. } */
  192. </style>

 组件里面的细节就不一一细说了,如果想了解怎么写的,仔细看一遍的话其实就会知道该传什么参数怎么用了。但是如果初学者对父子传参还不熟练,想快速使用该组件的话就继续往下看吧

二、如何使用该组件

1、先导入该组件
import TableCom from '@/components/Table/index'

  在compnents中别忘了注册一下你导入进来的TableCom

  components: { TableCom},
2、然后在html中如下图写入组件
  1. <TableCom
  2. :column="columnData"
  3. :table-data="tableData"
  4. :table-loading="tableLoading"
  5. >
  6. </TableCom>

注:

column:每一列的配置项(列名、大小、插槽等等),类型:数组Arrary

tabledata:表格的数据(一般就是后端传过来的数组,数组里面是对象),类型:数组Arrary

tableLoading:加载过程显示,类型:布尔值boolean

headerCellStyle:表头颜色设置,类型:对象Object

3、columnData举例数据:
(这里就会渲染出一个四列的表格,每一列分别是名称、启用状态、协议、操作)
  1. columnData: [
  2. {
  3. type: '',
  4. label: '名称',
  5. prop: 'name'
  6. },
  7. {
  8. type: '',
  9. label: '启用状态',
  10. prop: 'is_active',
  11. formatData: (item) => {
  12. const str = item == true ? '已启用' : '未启用'
  13. return str
  14. }
  15. },
  16. {
  17. type: '',
  18. label: '协议',
  19. prop: 'protocol',
  20. dataType: 'slot',
  21. slot: 'protocolSlot'
  22. },
  23. {
  24. dataType: 'option',
  25. label: '操作',
  26. width: '300px',
  27. operation: [
  28. {
  29. name: '编辑',
  30. type: '',
  31. size: 'mini',
  32. icon: 'el-icon-edit',
  33. plain: true,
  34. showHide: (row) => {
  35. },
  36. clickFun: (row) => {
  37. }
  38. },
  39. {
  40. name: '删除',
  41. type: 'danger',
  42. size: 'mini',
  43. showHide: (row) => {
  44. },
  45. icon: 'el-icon-delete',
  46. plain: true,
  47. clickFun: (row) => {
  48. }
  49. }
  50. ]
  51. }
  52. ],
  53. //表格数据
  54. tableData: [{name:111,is_active:true,protocol:'TCP'},
  55. {name:111,is_active:true,protocol:'TCP'},
  56. {name:111,is_active:true,protocol:'TCP'}],

注:以下是所有配置项,其中最常使用的就是label、width、prop、dataType、slot

  1.  label :列名,就是表头上的标签叫什么些什么,类型 string
  2. width:该列宽度, string
  3.  prop:  table绑定数据字段 string,这一列要展示哪个tableData里面的字段就写哪个字段
  4. dataType:  内置多个基本的element组件可供直接使用 string
  5. slot  当`dataType`为`slot`时必带参数,参数值为插槽的 `slot` 值 string,具体使用方法请看下面的第4点slot插槽的使用
  6. fixed:列是否固定在左侧或者右侧,true 表示固定在左侧 string, boolean
  7. sortable 对应列是否可以排序 boolean, string
  8.  filters 数据过滤的选项,数组格式,数组中的元素需要有 text 和 value 属性。Array
  9. columnKey :column 的 key,如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件
  10.  filteredValue  选中的数据过滤项,如果需要自定义表头过滤的渲染方式,可能会需要此属性。
  11.  filterMultiple  数据过滤的选项是否多选
  12.  minWidth 对应列的最小宽度,与 width 的区别是 width 是固定的,min-width 会把剩余宽度按比例分配给设置了 min-width 的列 string
  13.  formatData  对数据进行数据处理,接受一个回调函数 (params?: {prop}) => {}
  14.  formatType  当 `dataType`为 `tag`时,对标签颜色设置 (params?: {prop}) => { return 'danger'| 'success'... }`
  15. operation 当 `dataType` 为 `option`时,对按钮的 配置,具体配置项以下图为准object
  16.  tagGroup 当 `dataType`为 `tag`时,绑定数据集字段显示名称 object
4、如何使用插槽

比如我们刚刚举例子的协议这一列,我们的需求可能不只是单单只展示一个协议,想设计成tag的样式,那么我们就需要用到插槽,如下图,要将dataType设为‘slot’,然后slot设为自己想取的插槽名称都可以,这个名称是要拿去html里用的

然后我们在html里的原本的组件里面加入插槽的内容:

  1. <TableCom
  2. :column="columnData"
  3. :table-data="tableData"
  4. :table-loading="tableLoading"
  5. >
  6. <div
  7. slot="protocolSlot"
  8. slot-scope="scope"
  9. >
  10. <el-tag>{{scope.row.protocol}}</el-tag>
  11. </div>
  12. </TableCom>

 注:这里div的slot就是你在column里刚刚取得slot名称,然后在里面就可以任意编写样式或者直接使用elementUI里面的组件,想要使用数据时就可以用scope.row.XXX,这里还是要展示协议那个字段,所以就使用了protocol,与前面举例数据tableData里的字段相对应。

5、使用formatData进行数据处理

如下我们刚刚举例数据里面的:

  1. {
  2. type: '',
  3. label: '启用状态',
  4. prop: 'is_active',
  5. formatData: (item) => {
  6. const str = item == true ? '已启用' : '未启用'
  7. return str
  8. }
  9. },

这里主要是用于后端传给我们的数据我们不是直接展示的,需要根据数据发生变化,比如tableDate里面的is_active里面的是true和false,但是要展示的是已启用和未启用,就需要用到formData

6、dataType里面可以使用的其他参数

除了前面第四点说的插槽用slot,还可以用tag(标签项)、progress(进度条)、option(按钮配置项),tag和progress进度条可以自己试试

7、operation配置

operation配置主要是来用于表格里面的操作那一列,通常就会有很多按钮,有以下参数:

name:按钮名称,string

type:按钮类型,`string` | `danger | success`,以elementUi 参数为准

size:按钮大小,以elementUi 参数为准

icon:按钮上的icon,以elementUi 参数为准

plain:按elementUi 文档为准

clickFun:按钮的回调函数

--------------------------------------------------------------------------------------------------------------

补充评论区小伙伴的需求

1、如何获取表格每行的索引:

如上图,在按钮的点击事件里加一个传参scope.$index,然后在使用按钮的点击事件时就可以拿到表格的索引

2、如何给表格加多选框,并把某行默认选中:

想实现的效果如下图:

实现步骤:

1、先加入多选框,因为之前的组件已经写了多选框的功能,所以只需要加入如下图右边框内的内容,这样就有多选框了

2、多选框选择后需要拿到已选择的数据,组件也已经写好了这个函数,只需要在父组件加入如何使用,如下图:(黄色框是需要自己加的)

3、默认选择第3行:

this.$refs.multipleTable.toggleRowSelection(this.tableData[2]);

multipleTable就是我们组件里面给el-table加的ref

tableData是传给el-table的数据

注:但是因为这句话是在表格组件里面才能用的,如果需要父组件传入哪一行需要默认选择,可以自己再做个传参,父子组件就不细说了,不会的话可以看vue2父子组件传参方式汇总_vue2父子传参-CSDN博客

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

闽ICP备14008679号