本文正在参与「金石计划 . 瓜分6万现金大奖」
前言
在咱们日常开发中,表格事务基本是必不可少的,关于老手来说确实简略,粗茶淡饭算了,但是关于新手小白怎么最快上手搞定需求呢?本文从思路开端着手,帮你快速搞定表格。
常见事务
需求:兼并行
1. 兼并条码相同的两行
2. 接触高亮关闭,表格色彩重一点
思路剖析
调取element Table的回调
通过给table
传入span-method
办法能够完成兼并行或列,办法的参数是一个目标,里边包括当前行row
、当前列column
、当前行号rowIndex
、当前列号columnIndex
四个特点。该函数能够回来一个包括两个元素的数组,第一个元素代表rowspan
,第二个元素代表colspan
。 也能够回来一个键名为rowspan
和colspan
的目标。
<div v-loading="loading">
<el-table :span-method="objectSpanMethod" class="unbound-table" ref="cateTable" :data="tbldata.content" header-row-class-name="custom-table-header-color_default">
<el-table-column v-for="col in tableColumns" :key="col.name" :prop="col.name" :label="col.label" :width="col.width">
<template slot-scope="scope">
<div v-if="col.name === 'action'" style="text-align: center" class="action-list">
<el-button v-permission="['admin_add_stdproduct']" type="primary" @click="handleImport(scope.row)">导入规范产品库</el-button>
</div>
<span v-else> {{ scope.row[col.name] }} </span>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<div class="pagination-container">
<el-pagination layout="prev, pager, next" @current-change="loadTable" :current-page.sync="pageable.page" :page-size="pageable.size" :total="tbldata.total" v-if="tbldata.total"></el-pagination>
</div>
</div>
data(){
return{
spanArr:[],
position:0
}
}
//表格合同办法 --- 此处只兼并了第一列
objectSpanMethod({ row, column, rowIndex, columnIndex }){
if (columnIndex === 0) {
const _row = this.spanArr[rowIndex];
const _col = _row > 0 ? 1 : 0;
return {
rowspan: _row,
colspan: _col
};
}
},
//筛出行里边相同的数据的index 并组装进数组--------请求完表格数据后调用一下这个办法
rowspan() {
this.spanArr = []
this.tableData.forEach((item, index) => {
if (index === 0) {
this.spanArr.push(1);
this.position = 0;
} else {
if (this.tableData[index].code=== this.tableData[index - 1].code) {
this.spanArr[this.position] += 1;
this.spanArr.push(0);
} else {
this.spanArr.push(1);
this.position = index;
}
}
});
},
.el-table ::v-deep tbody tr:hover > td {
background-color: transparent;
}
.el-table ::v-deep tbody tr td {
border-bottom: 1px solid #d6d6d6;
}
需求兼并列
需求将两列兼并为一列
思路剖析
通过给table
传入span-method
办法能够完成兼并行或列,办法的参数是一个目标,里边包括当前行row
、当前列column
、当前行号rowIndex
、当前列号columnIndex
四个特点。该函数能够回来一个包括两个元素的数组,第一个元素代表rowspan
,第二个元素代表colspan
。 也能够回来一个键名为rowspan
和colspan
的目标。
表格数据为一维数组,只需要将一维数组变为二维数组即可
let arr = [
{regulationsId: 5172, title: "测验111标题2 ", type: 610, state: 1, createdTime: 1530152467000},
{regulationsId: 5169, title: "测验111标题", type: 610, state: 1, createdTime: 1530085573000},
{regulationsId: 5170, title: "测验123标题", type: 609, state: 1, createdTime: 1530085687000},
{regulationsId: 5171, title: "测验1122标题", type: 608, state: 1, createdTime: 1530085750000}
];
//获取数组中有多少个type
let types = [];
arr.map((item, index) => {
if(types.indexOf(item.type) === -1){
types.push(item.type)
}
})
//一个包括多个list的成果目标
let obj = [];
// 依据type生成多个数组
types.map((typeItem, typeIndex) => {
arr.map((arrItem, arrIndex) => {
if(arrItem.type == typeItem){
obj[typeIndex] = obj[typeIndex] || [];
obj[typeIndex].push(arrItem)
}
})
})
你或许想去看的
Vue实战技巧Element Table二次封装
Vue从零到一重构后台办理项目
写在最终
我是凉城a,一个前端,酷爱技能也酷爱生活。
与你相逢,我很高兴。
假如你想了解更多,请点这里,等待你的小⭐⭐
- 文中如有过错,欢迎在谈论区指正,假如这篇文章帮到了你,欢迎点赞和关注
- 本文首发于,未经许可制止转载