ElementUI的Table组件行合并上手指南

ElementUI的Table组件行合并 ,示例用官网vue3版的文档

javascript 复制代码
<el-table :data="tableData" :span-method="objectSpanMethod" border style="width: 100%; margin-top: 20px">
    <el-table-column prop="id" label="ID" width="180" />
    <el-table-column prop="name" label="姓名" />
    <el-table-column prop="amount1" label="数值 1(元)" />
    <el-table-column prop="amount2" label="数值 2(元)" />
    <el-table-column prop="amount3" label="数值 3(元)" />
</el-table>
javascript 复制代码
export default {
    data() {
        return {
            tableData: [
                {
                    id: '12987122',
                    name: '王小虎',
                    amount1: '234',
                    amount2: '3.2',
                    amount3: 10,
                },
                {
                    id: '12987123',
                    name: '王小虎',
                    amount1: '165',
                    amount2: '4.43',
                    amount3: 12,
                },
                {
                    id: '12987124',
                    name: '王小虎',
                    amount1: '324',
                    amount2: '1.9',
                    amount3: 9,
                },
                {
                    id: '12987125',
                    name: '王小虎',
                    amount1: '621',
                    amount2: '2.2',
                    amount3: 17,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
                {
                    id: '12987126',
                    name: '王小虎',
                    amount1: '539',
                    amount2: '4.1',
                    amount3: 15,
                },
            ],

            // 用于行合并的数组,那就要在某一列下使用,此例子用于第一、二列
            // 每个元素是一行,0标识要隐藏第一列,非0数字标识此行要合并的行数
            spanArr: [3, 0, 0, 2, 0, 2, 0, 1, 3, 0], // 比如开头的3,0,0 从第一行开始合并3行,隐藏第二三行的第一列
            spanArr2: [2, 0, 1, 1, 1, 2, 0, 1, 1, 2],
        };
    },
    methods: {
		// 行合并范例
        objectSpanMethod({ row, column, rowIndex, columnIndex }) {
        	// 处理第一列
            if (columnIndex === 0) {
                let _row = this.spanArr[rowIndex];
                let _col = _row > 0 ? 1 : 0; // 0表示隐藏
                return {
                    rowspan: _row,
                    colspan: _col,
                };
            }
            
			// 处理第二列
            if (columnIndex === 1) {
                let _row = this.spanArr2[rowIndex];
                let _col = _row > 0 ? 1 : 0; // 0表示隐藏
                return {
                    rowspan: _row,
                    colspan: _col,
                };
            }
        },
    },
};

效果:

相关推荐
海天胜景37 分钟前
vue3 el-table 行筛选 设置为单选
javascript·vue.js·elementui
喜欢敲代码的程序员18 小时前
SpringBoot+Mybatis+MySQL+Vue+ElementUI前后端分离版:项目搭建(一)
spring boot·mysql·elementui·vue·mybatis
华子w90892585919 小时前
基于 SpringBoot+Vue.js+ElementUI 的 “花开富贵“ 花园管理系统设计与实现7000字论文
vue.js·spring boot·elementui
hackchen1 天前
从0到1解锁Element-Plus组件二次封装El-Dialog动态调用
前端·vue.js·elementui
蓝胖子的多啦A梦1 天前
Vue+element 日期时间组件选择器精确到分钟,禁止选秒的配置
前端·javascript·vue.js·elementui·时间选选择器·样式修改
夏天想1 天前
vue2+elementui使用compressorjs压缩上传的图片
前端·javascript·elementui
海天胜景1 天前
vue3 el-table 列增加 自定义排序逻辑
javascript·vue.js·elementui
满楼、11 天前
el-cascader 设置可以手动输入也可以下拉选择
javascript·vue.js·elementui
海天胜景11 天前
vue3 el-table 根据字段值 改变整行字体颜色
javascript·vue.js·elementui
资深柠檬精11 天前
报错 @import “~element-ui/packages/theme-chalk/src/index“;
前端·elementui