点击编辑按钮:
编辑状态下,表格可以编辑。但是点击“确认”或者“取消”按钮,列数据编辑状态已经修改,但是视图没有改变。
页面代码:
获取当前行的index,并直接修改当前行用于判断是否编辑状态的数据为false(不可编辑);
handleCancle(item){
const curInx = this.list.indexOf(item);
this.list[curInx].isEdit = false;
}
根本原因:是因为vue的视图更新不及时问题导致
解决方法:需要使用vue.set()方法进行修改数据才可以立刻更新视图
handleCancle(item){
const curInx = this.list.indexOf(item);
this.list[curInx] = this.crEditListRow;
this.$set(this.list,curIdx,this.crEditListRow)
}