elementUI的el-table的循环遍历二维数组,v-for循环遍历二维数组并且显示成表格的形式
这些其实就是Excel表格的数据转化下来先是查看数组类型的样式全部的数据

async reafXls(){
      let res = await this.$api.teaback.readXls()
      console.log(res);
    this.dataList =  res.excelObj
      this.goodsList = res.excelObj.slice(1)//内容
      this.dataColum = res.excelObj[0]//表头
      console.log(this.goodsList);
      console.log(this.dataColum);
}

在这里插入图片描述

下面试区分开一个表格的表头,一个单元格数据

在这里插入图片描述

然后就是在页面显示出来

第一种

<table cellpadding="0" cellspacing="0" >
    <tr v-for='(item,i) in dataList' :key="i">
          <td v-for='(value,index) in item' :key="index">{{value}}</td>
    </tr>
  </table>

第二种

<el-table :data="goodsList" border height="550" style="width:100%">
            <el-table-column v-for='(item,i) in dataColum' :key="i" :label="item" show-overflow-tooltip>
              <template slot-scope="scope">
                {{scope.row[i]}}
              </template>
            </el-table-column>
            <el-table-column prop="operation" label="操作" show-overflow-tooltip>
              <template slot-scope="scope">
                <el-button size="mini" type="primary" @click="handleSee(scope.row)">查看</el-button>
                <!-- <el-button size="mini" type="danger" @click="handleDelete(scope.row)">删除</el-button> -->
              </template>
            </el-table-column>
          </el-table>

在这里插入图片描述

Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐