vue+element-ui实现表格编辑的三种实现方式

时间:2021-05-26

1、表格内部显示和编辑切换

这种方式就是利用两个标签显示隐藏来实现,我们这里用input和span,正常用span将数据显示,点击编辑时,将span隐藏,显示input进行编辑。选中当前行我们可以通过slot-scope中的index去实现,在控制显示隐藏的属性上绑定index就可以选中当前行了,如showEdit[index]。

页面结构代码:

<el-table :data="tableData" tooltip-effect="dark" style="width: 100%" header-align="center"> <el-table-column width="50" header-align="center"> <template slot-scope="{row,$index}"> <span>{{$index + 1}}</span> </template> </el-table-column> <el-table-column label="名称" prop="Name" width="300" header-align="center"> <template slot-scope="{row,$index}"> <input class="edit-cell" v-if="showEdit[$index]" v-model="row.Name"> <span v-if="!showEdit[$index]">{{row.Name}}</span> </template> </el-table-column> <el-table-column fixed="right" label="操作" width="100" header-align="center"> <template slot-scope="{row,$index}"> <el-button type="text" size="small" @click.native="handleUpdate($index, row)" v-if="showBtn[$index]">更新</el-button> <el-button type="text" size="small" @click.native="handleCancel($index, row)" v-if="showBtn[$index]">取消</el-button> <el-button type="text" size="small" @click.native="handleEdit($index, row)" v-if="!showBtn[$index]">编辑</el-button> <el-button type="text" size="small" @click.native="handleDelete($index, row)" v-if="!showBtn[$index]">删除</el-button> </template> </el-table-column></el-table>

初始化data:

data() { return { showEdit: [], //显示编辑框 showBtn: [], showBtnOrdinary: true }}

实现方法:

//点击编辑handleEdit(index, row) { this.showEdit[index] = true; this.showBtn[index] = true; this.$set(this.showEdit,row,true) this.$set(this.showBtn,row,true)},//取消编辑handelCancel(index, row) { this.getContentList(); this.showEdit[index] = false; this.showBtn[index] = false; },//点击更新handleUpdate(formName) {},//点击删除handleDelete(index, row) {},

初始化的时候最好给数组遍历赋值

for(var i = 0; i < 100; i ++) { this.showEdit[i] = false; this.showBtn[i] = false; this.$set(vm.showEdit[i], false); this.$set(vm.showBtn[i], false);}

另外还可以给row自身添加一个属性,通过row.showEdit来控制每一行的编辑。上面说的这些在我的开发环境实现一点问题都没有,但是测试出来了很多bug(没反应、点击第一次第二次没反应等),后来又查询了一下vue的官方文档“异步队列更新”,可能需要加一个Vue.nextTick(callback)。项目比较紧换了另外一种实现方式。有兴趣的小伙伴可以看看官方文档:https://cn.vuejs.org/v2/guide/reactivity.html

2、通过弹出另外一个表格编辑

这个是网上找的一篇文章去实现的,原文链接:https://plete="off"></el-input> </el-form-item> </el-form> <div slot="footer" class="dialog-footer"> <el-button @click.native="handleCancel('editForm')">取消</el-button> <el-button type="primary" @click.native="handleUpdate('editForm')">更新</el-button> </div></el-dialog>

初始化data:

editFormVisible: false, //默认不显示编辑弹层

方法:

//点击编辑handleEdit(index, row) { this.editFormVisible = true; this.editForm = Object.assign({}, row); //这句是关键!!!},//点击关闭dialoghandleClose(done) { this.editFormVisible = false;},//点击取消handleCancel(formName) { this.editFormVisible = false;},//点击更新handleUpdate(forName) { //更新的时候就把弹出来的表单中的数据写到要修改的表格中 var postData = { name: this.editForm.name; } //这里再向后台发个post请求重新渲染表格数据 this.editFormVisible = false;}

3.直接通过样式控制

element-ui中的表格鼠标选中行的时候,行class会自动添加一个current-row,所以通过设置这个class控制编辑和不可编辑标签的显示隐藏。具体参考: https://www.jb51.net/article/149877.htm

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章