通过给table传入span-method方法可以实现合并行或列,方法的参数是一个对象,里面包含当前行row、当前列column、当前行号rowIndex、当前列号columnIndex四个属性。该函数可以返回一个包含两个元素的数组,第一个元素代表rowspan,第二个元素代表colspan。 也可以返回一个键名为rowspan和colspan的对象。

<el-table
      :data="tableData"
      :span-method="arraySpanMethod"
      border
      style="width: 100%">










arraySpanMethod({ row, column, rowIndex, columnIndex }) {
        if (rowIndex % 2 === 0) {    //如果行的索引除以2余0
          if (columnIndex === 0) {   //如果列的索引等于0
            return {     //则rowIndex行的columnIndex列进行合并
              rowspan: 1,    //合并一行
              colspan: 2    //合并两列
            }
          } else if (columnIndex === 1) {
            return {
              rowspan: 0,
              colspan: 0
            };
          }
        }
      },
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐