vue+element-ui实现表格编辑的三种实现方式
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://www.jb51.net/article/149870.htm
另外,github上还有实现的代码,不知道是不是同一个人,为了尊重原创,地址都放在这里:https://github.com/Recklesslmz/elementUI
这种方式实现就简单多了,初始化table代码同上,但是可以去掉input编辑框,和showEdit属性,还需要创建一个隐藏的dialog,里面放另外一张表单:
<el-dialog title="编辑" :visible.sync="editFormVisible" :close-on-click-modal="false" class="edit-form" :before-close="handleClose"> <el-form :model="editForm" label-width="80px" :rules="editFormRules" ref="editForm"> <el-form-item label="名称" prop="Name"> <el-input v-model="editForm.name" auto-complete="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); //这句是关键!!! }, //点击关闭dialog handleClose(done) { /*done(); location.reload();*/ 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
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。