el-table动态表头

 

 

  <el-table
                    class="table-head-transparent"
                    :data="tableData"
                    :height="tableHeight"
                    :header-cell-style="{ 'border-ground': 'tranparent' }"
                  >
                    <el-table-column
                      align="center"
                      prop="orgName"
                      label="公司名称"
                    >
                    </el-table-column>
                    <el-table-column
                      v-for="(item, index) in tableHead"
                      :key="index"
                      :label="item.attributeName"
                      :property="item.attribute"
                      align="center"
                    >
                      <template slot-scope="scope">{{
                        scope.row.values[scope.column.property]
                      }}</template>
                    </el-table-column>
                  </el-table>

 

相关文章:

  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-05
  • 2021-11-01
  • 2021-09-11
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案