使用Element的table合並單元格的問題(合並行)


目標樣式:

 

 

 官網案例:

<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>

<script>
  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
        }]
      };
    },
    methods: {
      arraySpanMethod({ row, column, rowIndex, columnIndex }) {
        if (rowIndex % 2 === 0) {
          if (columnIndex === 0) {
            return [1, 2];
          } else if (columnIndex === 1) {
            return [0, 0];
          }
        }
      },

      
    }
  };
</script>

但是在項目會遇到這種情況:

 

 合並的兩行會出現高度不一致的情況

代碼:

objectSpanMethod({ row, column, rowIndex, columnIndex }){
        if (rowIndex === 2 || rowIndex === 3) {
          let len = Object.keys(row).length
          if(columnIndex !== 0){
            return [1, len];
          }
        }
      },

 

解決方法:

不需要合並的列的操作也需要寫完整

代碼:

objectSpanMethod({ row, column, rowIndex, columnIndex }){
        if (rowIndex === 2 || rowIndex === 3) {
          let len = Object.keys(row).length
          if(columnIndex === 0){
            return [1, 1];
          }else if(columnIndex === 1){
            return [1, len];
          }else{
              return [0, 0];
          }
        }
      },

 


免責聲明!

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



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