element表格二次封装的方法步骤是什么
Admin 2022-08-06 群英技术资讯 579 次浏览
在项目中经常会使用到element的表格,如果每次都cv,也确实有点麻烦,基于这个情况我对表格进行了二次封装
写一个Table组件
首先先写表格样式
<el-table :data="tableData" :header-cell-style="headerStyle" :height="height" :border="border" @selection-change="handleSelectionChange" > <el-table-column v-if='selection' type="selection" width="55"> </el-table-column> <el-table-column v-for="v in tableProp" :key="v.label" :prop="v.code" :sortable='v.sortable' :label="v.label" :width="v.width" > <template slot-scope="scope"> <div v-if='!v.code'> {{ scope.row[scope.column.property] }} </div> <div v-else> <slot name="row" :row="scope.row"></slot> </div> </template> <el-table-column v-for="(item, i) in v.data" :key="i" :sortable='item.sortable' align="center" :width="item.width" :prop="item.code" :label="item.label" > <template slot-scope="scope"> <div v-if='!v.code'> {{ scope.row[scope.column.property] }} </div> <div v-else> <slot name="row" :row="scope.row"></slot> </div> </template> </el-table-column> </el-table-column> <el-table-column label="操作" v-if='ishandle'> <template slot-scope="scope"> <slot name="edit" :row="scope.row" :index="scope.$index"></slot> </template> </el-table-column> </el-table>
tableData为当前显示的数据,tableProp为表头的名称,可以为多级也可以为单级,区别为data是否存在,headerStyle为表头样式,height为表的高度,sortable以该列为基准的排序,border是否显示边框,handleSelectionChange多选,selection是否显示多选,ishandle是否显示操作,这里使用插槽进行写操作
export default { props: { height: { type: Number, default: 220, }, ishandle:{ type: Boolean, default: false, }, border:{ type: Boolean, default: false, }, tableProp: { type: Array, default: () => [ { code: 'index', label: '指标', width: 100, }, { code: 'PAC', label: 'PAC', width: 120, data:{ code: 'PAB', label: 'PAB', width: 60, } }, { code: 'PAM', label: 'PAM', width: 60, code:true, }, { code: 'POWER_CONSUMPTION', label: '综合电耗(kW·h)', width: 50, }, { code: 'WATER_CONSUMPTION', label: '自用水率(%)', }, ], }, tableData: { type: Array, default:() => [ { index:1, PAC:'1' PAM:'1', POWER_CONSUMPTION:'1', WATER_CONSUMPTION:'1' } ] }, Style:{ type:String, default:'font-size: 12px;padding:0;line-height: inherit;font-weight: 500;color: #6A7474;' } }, data() { return { show: false, }; }, methods: { // 样式 headerStyle() { return this.Style; }, // 多选 handleSelectionChange(val){ this.$emit('SelectionChange',val) } }, };
第二步加分页
<el-pagination :background='background' :layout="layout" :total="total" :page-size="pageSize" :current-page.sync="current" :page-sizes="pageSizes" @size-change="handleSizeChange" @current-change="handleCurrentChange" :hide-on-single-page='singlepage' > </el-pagination>
background背景是否显示,layout组件布局,子组件名用逗号分隔,total总条数,pageSizes每页显示个数选择器的选项设置,current当前页码,pageSize每页显示条目个数,singlepage只有一页时是否隐藏,handleSizeChangepageSize 改变时会触发,handleCurrentChange改变时会触发
export default { props: { background: { type: Boolean, default: false, }, layout:{ type: String, default: 'total, sizes, prev, pager, next, jumper', }, total:{ type: Number, default: 100, }, pageSize:{ type: Number, default: 10, }, pageSizes:{ type: Array, default: () => [10, 20, 30, 40, 50, 100], }, singlepage: { type: Boolean, default: false, }, current:{ type: Number, default: 1, }, }, methods: { // pageSize 改变时会触发 handleSizeChangepageSize (val) { this.$emit('handleSizeChangepageSize ',val) }, // currentPage 改变时会触发 handleCurrentChange(val){ this.$emit('handleCurrentChange',val) } }, };
在页面中使用
先引入Table.vue页面
<Table :height="90" class="left-top-table" :tableData="tableIndex" :tableProp="tableProp" @handleCurrentChange='handleCurrentChange' @handleSizeChangepageSize ='handleSizeChangepageSize ' > <template slot="edit" slot-scope="scope"> <el-button size="mini" @click="handleEdit(scope.index, scope.row)" >编辑</el-button > </template> </Table>
//pageSize 改变时会触发 handleCurrentChange(val){ .... } // currentPage 改变时会触发 handleSizeChangepageSize (val){ .... } // 编辑方法 handleEdit(index,row){ .... }
更多的可以根据自己项目的需求进行修改,这只是一个大概的项目雏形
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
vuex是如何使用的?vuex是一个专为vue.js应用程序开发的状态管理模式,是用来管理组件之间通信的一个插件。文本主要介绍的就是vuex的使用。
本文主要介绍了JavaScript如何用面向对象的方式封装拖拽对象,通过3种方式来实现,帮助读者更好的理解其原理
效果图JSimport { Fragment, useState } from react;import styles from ./style.less;const data1 = [ { name: 人口, id: 1, arr: [ { nam
cropper.js+exif.js怎样实现头像上传的基本编辑操作,一些朋友可能会遇到这方面的问题,对此在下文小编向大家来讲解一下,内容详细,易于理解,希望大家阅读完这篇能有收获哦,有需要的朋友就往下看吧!
这篇文章给大家分享的是用JS实现中文转拼音的功能,其实实现并不困难,因为拼音比较多会有一点繁琐,下文有实现代码,感兴趣的朋友可以做个参考,接下来一起跟随小编看看吧。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008