el-table实现动态表格插入行(开发小记)

这篇博客介绍了一个使用Vue.js实现的动态表格编辑功能,通过switchChange字段控制单元格的编辑状态。用户可以点击‘编辑’进行输入,或者点击‘确认’保存更改。此外,还提供了添加和删除行的操作。示例代码详细展示了如何结合el-table组件来实现这一功能。
摘要由CSDN通过智能技术生成

实现效果图

 table主体代码,通过switchChange字段作为数据框的开关

   <div>
      <el-table :data="list" border style="width: 100%">
        <el-table-column type="index" label="序号" align="center" width="50"></el-table-column>
        <el-table-column label="测试" align="center">
          <template slot-scope="scope">
            <el-input v-model="list[scope.$index].value1" placeholder="请输入"
                      v-if="scope.row.switchChange"></el-input>
            <span v-else>{{ scope.row.value1 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="测试" align="center">
          <template slot-scope="scope">
            <el-input v-model="list[scope.$index].value2" placeholder="请输入"
                      v-if="scope.row.switchChange"></el-input>
            <span v-else>{{ scope.row.value2 }}</span>
          </template>
        </el-table-column>
        <el-table-column label="测试" align="center">
          <template slot-scope="scope">
            <el-input v-model="list[scope.$index].value6" placeholder="请输入"
                      v-if="scope.row.switchChange"></el-input>
            <span v-else>{{ scope.row.value6 }}</span>
          </template>
        </el-table-column>
        <el-table-column align="center" label="操作" width="150">
          <template slot-scope="scope">
            <div class="deal_box">
              <span
                  v-if="!scope.row.switchChange"
                  @click="scope.row.switchChange=true"
              >编辑</span>
              <span
                  v-if="scope.row.switchChange"
                  @click="scope.row.switchChange=false"
              >确认</span>
              <span
                  @click="deletePlan(scope.$index,list)"
              >删除</span>
            </div>
          </template>
        </el-table-column>
      </el-table>
      <div class="button_under">
        <el-button type="text" @click="insertPlan(list.length)">+添加</el-button>
      </div>
    </div>

按钮样式代码:

.button_under {
  text-align: center;
  border: 1px solid #DDDDDD;
}

添加事件insertPlan

   insertPlan(index) {
      this.outboundList.splice(index + 1, 0,
          {
            id: null,
            item1: "",
            item2: "",
            item3: "",
            item4: "",
            item5: "",
            item6: "",
            switchChange: false,
          }
      )
    },

删除事件deletePlan

   deletePlan(index, rows) {
      rows.splice(index, 1);
    },

数据的传输,直接将整个list提交给后端就行,我之前博客中有写,前后端List对象的传递​​​​​​​

`el-table` 是 Element UI 中的一个组件,它用于创建动态表格,可以轻松地展示复杂的数据结构。在 Vue.js 开发中,`el-table` 提供了丰富的配置选项,包括列定义、数据绑定、排序、分页等功能,非常适合处理大量数据的展示。 `el-table` 的基本用法包括以下几个步骤: 1. **引入组件**:首先需要在 Vue 项目中安装并引入 `element-ui` 和 `vue-table2` 或者直接使用 Element UI 自带的 `el-table` 组件。 ```js import { ElTable } from 'element-ui'; ``` 2. **数据准备**:你需要一个二维数组或者对象数组作为表格的数据源。每个数据项应该包含与表头对应的键值对。 ```js data() { return { tableData: [ { id: 1, name: '张三', age: 20 }, { id: 2, name: '李四', age: 25 }, // ... ], }; } ``` 3. **设置表头**:通过 `columns` 属性定义表头,可以是数组,也可以是一个对象数组,每个对象通常包含 `label`(显示名称)、`prop`(对应数据属性)等字段。 ```js columns: [ { label: 'ID', prop: 'id' }, { label: '姓名', prop: 'name' }, { label: '年龄', prop: 'age' } ] ``` 4. **实例化组件**:将这些配置添到模板中,如 `<el-table>` 标签内。 ```html <template> <el-table :data="tableData" :columns="columns"> <!-- 可能会有一些其他自定义内容 --> </el-table> </template> ``` `el-table` 具有很高的灵活性,可以根据实际需求动态增删、修改数据等。如果你想要进一步定制样式或者交互效果,还可以利用其提供的事件以及 API。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值