当前位置: 首页> 汽车> 新车 > 天津手机版建站系统哪个好_镇江佳鑫网络科技有限公司_冯站长之家_百度推广退款投诉

天津手机版建站系统哪个好_镇江佳鑫网络科技有限公司_冯站长之家_百度推广退款投诉

时间:2025/7/9 18:28:58来源:https://blog.csdn.net/mm_0123456789/article/details/146018856 浏览次数: 0次
天津手机版建站系统哪个好_镇江佳鑫网络科技有限公司_冯站长之家_百度推广退款投诉

多级表头表格封装

文章目录

  • 多级表头表格封装
      • 1、表格组件封装
      • 2、实现效果


1、表格组件封装

本例子只写到第三层,可自行拓展

<template><div><el-table :data="tableData" border style="width: 100%"><!-- 第一级表头列  --><el-table-columnv-for="column in tableColumns":key="column.label":label="column.label":align="column.align || 'center'":min-width="column.minWidth"show-overflow-tooltip><template v-if="column.children"><!-- 第二级表头列 --><el-table-columnv-for="child in column.children":key="child.label":label="child.label":prop="child.prop":min-width="child.minWidth"><template v-if="child.children"><el-table-columnv-for="subchild in child.children":key="subchild.label":label="subchild.label":prop="subchild.prop":min-width="subchild.minWidth"></el-table-column></template><template v-else><el-table-column :prop="column.prop"></el-table-column></template></el-table-column></template><template v-else><el-table-column :prop="column.prop"></el-table-column></template></el-table-column></el-table></div>
</template><script>
export default {data() {return {tableData: [{secondPlayer1: "aaa",thirdPlayer1: "111",thirdPlayer2: "222",},], // 表格数据数组tableColumns: [// 表头配置数组{label: "序号",type: "index",width: "70",},{label: "第一级表头",// prop: 'finstPlayer',minWidth: "",children: [{label: "第二级表头1",prop: "secondPlayer1",minWidth: "",},{label: "第二级表头2",prop: "secondPlayer2",minWidth: "",children: [{label: "第三级级表头1",prop: "thirdPlayer1",minWidth: "",},{label: "第三级级表头2",prop: "thirdPlayer2",minWidth: "",},],},],},],};},created() {},methods: {},
};
</script><style scoped>
/* 表格上方留出间距 */
.el-table {margin-top: 20px;
}
</style>

2、实现效果

在这里插入图片描述

关键字:天津手机版建站系统哪个好_镇江佳鑫网络科技有限公司_冯站长之家_百度推广退款投诉

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: