This commit is contained in:
weipengfei 2023-12-26 17:58:47 +08:00
parent a0f498b907
commit 9b6905e733
1 changed files with 12 additions and 1 deletions

View File

@ -394,7 +394,18 @@
}).then((res)=>{ }).then((res)=>{
Toast(res.message); Toast(res.message);
this.lableShow = false; this.lableShow = false;
this.getList(this.mer_id, true); this.productList.forEach(item=>{
if(item.product_id==this.lableInfo.id){
let arr = []
this.lableInfo.mer_labels.forEach(t=>{
arr.push({
product_label_id: t
})
})
item.mer_labels = arr;
}
})
// this.getList(this.mer_id, true);
}).catch(e=>{ }).catch(e=>{
Toast(e) Toast(e)
this.lableShow = false; this.lableShow = false;