Advertisement

表合并行合并列在Vue-ElementUI中

阅读量:

vue - element UI table合并行合并列

Max.Bai

2019-12

首先观察一下实际表现:

0. 核心理念

行合并:当当前行与前一行内容相同时,启动span计算过程;若内容不同,则终止span合并操作

列合并:当当前列与前一列内容相同时,启动span计算过程;若内容不同,则终止span合并操作

1. 表格配置

复制代码
       <el-table

    
     :data="dataSource"
    
     :border="true"
    
     :header-cell-style="{ 'font-weight': 'normal', 'text-align': 'center' }"
    
     :cell-style="{ 'text-align': 'center' }"
    
     size="mini"
    
     style="width: 100%"
    
     :span-method="arraySpanMethod"
    
       >

全部评论 (0)

还没有任何评论哟~