使用Element UI合並表格的行列元素


因為項目需求做個報表,需要合並單元格元素,便在element UI的例子上做了個擴展:

先看看效果吧

div是這么寫的:

<template>
  <div>
    <el-table
      :data="tableData"
      :span-method="arraySpanMethod"
      border
      style="width: 100%">
      <el-table-column
        prop="id"
        label="ID"
        width="180">
      </el-table-column>
      <el-table-column
        prop="name"
        label="姓名">
      </el-table-column>
      <el-table-column
        prop="amount1"
        sortable
        label="數值 1">
      </el-table-column>
      <el-table-column
        prop="amount2"
        sortable
        label="數值 2">
      </el-table-column>
      <el-table-column
        prop="amount3"
        sortable
        label="數值 3">
      </el-table-column>
      <el-table-column
        prop="amount4"
        sortable
        label="數值 4">
      </el-table-column>
      <el-table-column
        prop="amount5"
        sortable
        label="數值 5">
      </el-table-column>
    </el-table>
  </div>
</template>

接下來是js代碼:

data() {
      return {
        tableData: [{
          id: '12987122',
          name: '王小虎',
          amount1: '234',
          amount2: '3.2',
          amount3: 10,
          amount4: '3.2',
          amount5: 10
        }, {
          id: '12987123',
          name: '王小虎',
          amount1: '165',
          amount2: '4.43',
          amount3: 12,
          amount4: '4.43',
          amount5: 12
        }, {
          id: '12987124',
          name: '王小虎',
          amount1: '324',
          amount2: '1.9',
          amount3: 9,
          amount4: '1.9',
          amount5: 9
        }, {
          id: '12987125',
          name: '王小虎',
          amount1: '621',
          amount2: '2.2',
          amount3: 17,
          amount4: '2.2',
          amount5: 17
        }, {
          id: '12987126',
          name: '王小虎',
          amount1: '539',
          amount2: '4.1',
          amount3: 15,
          amount4: '4.1',
          amount5: 15
        }]
      };
    },
    methods: {
      // row: 行,column:列;rowIndex:第幾行;columnIndex:第幾列
      // rowspan: 行寬;colspan: 列寬
      arraySpanMethod({ row, column, rowIndex, columnIndex }) {
        if (rowIndex === 0 && columnIndex === 0) { 
           return {
             rowspan: 2,
             colspan: 1
          }
        } else if (rowIndex === 0 && columnIndex === 2) {
          row.amount1 = 666
          return [1, 2] // 合並列元素
        } else if (rowIndex === 1 && columnIndex === 0) {
          return {
             rowspan: 0,
             colspan: 0
          }
        } else if (rowIndex === 2 && columnIndex === 5) {
          return [1, 2]
        } else if (rowIndex === 3 && columnIndex === 5) {
          return {
             rowspan: 2,
             colspan: 2
          }
        }
      }
    }

其實這里合並單元格的原理是通過設置表格td標簽的rowspan和colspan屬性實現的;

rowspan:合並行元素

colspan:合並列元素


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM