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,
                };
            }
        },
    },
};

效果:

相关推荐
chushiyunen21 小时前
vue el-pagination实现分页
javascript·vue.js·elementui
一坨阿亮1 天前
使用e-tree开发树形穿梭框
javascript·vue.js·elementui
北极星日淘4 天前
可买免税店货物与安耐晒——特殊商品代购技术方案
javascript·vue.js·elementui
chushiyunen5 天前
vue插件element ui,element plus,ElMessage消息框,ref,动态绑定语法
vue.js·ui·elementui
流浪码农~6 天前
Element Plus DatePicker 动态设置每周起始日
前端·vue.js·elementui
依托偶尔宁8 天前
element-plus:el-table设置展开图标所在列的位置
前端·elementui
吠品10 天前
PyTorch 踩坑:libtorch_cpu.so 找不到 iJIT_NotifyEvent 符号
前端·vue.js·elementui
zhangyao94033018 天前
开发pc端时,表格的高度怎么设置才能铺满页面
前端·javascript·elementui
mengqudoh20 天前
elementui el-table 表头固定功能
javascript·vue.js·elementui
陪小甜甜赏月21 天前
ElementPlus 多个并列 Table 独立全选/取消全选 (适配嵌套表格业务)
前端·vue.js·elementui