当前位置:   article > 正文

elementUI的el-table横向展示_elementui横向表格

elementui横向表格

elementUI的el-table横向展示,表头根据数据变化。

图示:在这里插入图片描述
代码:

   <el-table
        :data="tableData"
        height="3.8rem"
        ref="table"
        border>
      <el-table-column
          v-for="(item,index) in tableHead"
          :prop="item.inventoryQtyByTon"
          :key="index"
          :width="tableHead.length>5?200:''"
          :label="item.lspzName">
      </el-table-column>
    </el-table>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
 tableData: [],
 tableHead: [],
  • 1
  • 2
           let list=[{
              inventoryQtyByTon:100,
              lspzName:'物料1'
            },{
              inventoryQtyByTon:200,
              lspzName:'物料2'
            },{
              inventoryQtyByTon:300,
              lspzName:'物料3'
            },{
              inventoryQtyByTon:400,
              lspzName:'物料4'
            },{
              inventoryQtyByTon:500,
              lspzName:'物料5'
            },{
              inventoryQtyByTon:600,
              lspzName:'物料6'
            }]
            this.getCrosswise(list)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
    //横向表格数据
    getCrosswise(list){
      let dataObj = {}
      list.map((e,index)=>{
        dataObj['inventoryQtyByTon' + index] = e.inventoryQtyByTon
        this.tableHead.push({
          lspzName:e.lspzName,
          inventoryQtyByTon:'inventoryQtyByTon' + index
        })
      })
      this.tableData.push(dataObj)
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/223983
推荐阅读
相关标签
  

闽ICP备14008679号