【Vue+Element-UI】Table表格:动态Table

前言

客户需求: 实现动态Table,Table表头定制化展示。
实现思路: 参考Element-UI官方Table表格的写法,对Table进行二次封装。全局使用该组件,方便后期维护。


一、封装动态表格组件

1.父组件

父组件list.vue:

    <div class="text-right mt-5">
      <el-button type="info" icon="el-icon-s-operation" @click="openCustom">列表定制</el-button>
      <TagColumn :popover-visible.sync="popoverVisible" :columns="columns" @success="updateColumns" />
    </div>
    <TagTable
      ref="tagTable"
      :key="key"
      v-loading="PocManager.queryPocTestApplys.loading"
      :highlight-current-row="true"
      height="calc(100vh - 240px)"
      stripe
      class="mt-5"
      :data-list="gridList"
      :columns="columns"
      @sort-change="sortChange"
      @selection-change="selectionChange"
    >
      <el-table-column slot="before" type="index" label="序号" />
      <el-table-column slot="after" label="操作" width="120px">
        <template slot-scope="scope">
          <el-button type="text" icon="el-icon-edit" @click="openEdit(scope.row)">编辑</el-button>
          <el-button type="text" @click="remove(scope.row)"&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值