fix: table demo bug #1700
fix #1700 https://github.com/vueComponent/ant-design-vue/issues/1700pull/1731/head
parent
0244d215ad
commit
0dbea62fdf
|
@ -106,11 +106,17 @@ Table with editable rows.
|
||||||
},
|
},
|
||||||
save(key) {
|
save(key) {
|
||||||
const newData = [...this.data];
|
const newData = [...this.data];
|
||||||
|
const newCacheData = [...this.cacheData];
|
||||||
const target = newData.filter(item => key === item.key)[0];
|
const target = newData.filter(item => key === item.key)[0];
|
||||||
if (target) {
|
const targetCache = newCacheData.filter(item => key === item.key)[0];
|
||||||
|
if (target && targetCache) {
|
||||||
delete target.editable;
|
delete target.editable;
|
||||||
this.data = newData;
|
this.data = newData;
|
||||||
this.cacheData = newData.map(item => ({ ...item }));
|
Object.assign(
|
||||||
|
targetCache,
|
||||||
|
target
|
||||||
|
);
|
||||||
|
this.cacheData = newCacheData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
cancel(key) {
|
cancel(key) {
|
||||||
|
|
Loading…
Reference in New Issue