修复删除规格项问题
parent
db6e47fa04
commit
2041eca723
|
@ -1329,9 +1329,7 @@ export default {
|
||||||
/** 移除当前规格项 进行数据变化*/
|
/** 移除当前规格项 进行数据变化*/
|
||||||
handleCloseSkuItem($index, item) {
|
handleCloseSkuItem($index, item) {
|
||||||
this.skuInfo.splice($index, 1);
|
this.skuInfo.splice($index, 1);
|
||||||
this.skuTableData.forEach((e, index) => {
|
this.skuTableData.splice($index, 1);
|
||||||
delete e[item.name];
|
|
||||||
});
|
|
||||||
/**
|
/**
|
||||||
* 渲染规格详细表格
|
* 渲染规格详细表格
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue