This commit is contained in:
liushiwei
2023-08-08 10:07:24 +08:00
parent 5bda5f83d8
commit 1359688af8

View File

@@ -331,12 +331,7 @@
"subPurchaseOrderSn": sn
}}).then((res) => {
if (res.errorCode == 1000000) {
for (let i = 0;i < this.choosedList.length; i++) {
if (this.choosedList[i].subPurchaseOrderSn == sn) {
this.choosedList.splice(i, 1)
break;
}
}
let t = this.timer.filter((item) => {
return item.id == sn;
@@ -364,15 +359,13 @@
})
},
addSuccessInfo(obj) {
this.$http.post(`/api/successInfo/add`, null, {
params: {
this.$http.post(`/api/successInfo/add`, {
productName: obj.productName,
subPurchaseOrderSn: obj.subPurchaseOrderSn,
mallId: obj.mallId,
mallName: obj.mallName,
categoryName: obj.category
}
}).then(res => {
}).then(res => {
console.log(res)
})
},