fix: 🐛 修复已知的bug
parent
fff086a3a1
commit
e13fc57ae7
|
@ -151,7 +151,7 @@
|
||||||
<img :src="complaintInfo.goodsImage" height="60px">
|
<img :src="complaintInfo.goodsImage" height="60px">
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<a>{{complaintInfo.goodsName}}</a><br>
|
<a @click="linkTo(complaintInfo.goodsId, complaintInfo.skuId)">{{complaintInfo.goodsName}}</a><br>
|
||||||
<span>¥{{complaintInfo.goodsPrice}} * {{complaintInfo.num}}(数量)</span>
|
<span>¥{{complaintInfo.goodsPrice}} * {{complaintInfo.num}}(数量)</span>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
|
@ -566,10 +566,11 @@ export default {
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
let ids = [];
|
let ids = [];
|
||||||
this.selectedGoods.forEach(function (e) {
|
this.selectedGoods.forEach(function (e) {
|
||||||
ids.push(e.id);
|
ids.push(e.skuId);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.form.promotionGoodsList = this.form.promotionGoodsList.filter((item) => {
|
this.form.promotionGoodsList = this.form.promotionGoodsList.filter((item) => {
|
||||||
return !ids.includes(item.id);
|
return !ids.includes(item.skuId);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue