调整商品扫码导入

This commit is contained in:
luofei 2023-05-31 14:33:00 +08:00
parent 55b1f3b706
commit a9400f5482

View File

@ -125,7 +125,6 @@
addGoodsopen() {
if (this.item) {
post_product_import(this.item.product_id).then(e => {
console.log(e)
if (e.status == 200) {
Toast(e.data.msg)
this.addGoodsShow = false
@ -139,7 +138,6 @@
Toast('已经导入过该商品了')
this.addGoodsShow = false
}
console.log(err);
})
}
this.item = []
@ -192,7 +190,6 @@
});
return;
}
this.searchGoodsShow = true
} else {
this.scanCode();
@ -218,7 +215,6 @@
})
},
async seachBarCode(code) {
console.log(code);
const {
data
} = await seachBarCodeAPI({
@ -231,25 +227,7 @@
})
return
}
console.log(data.list[0]);
post_product_import(data.list[0].product_id).then(e => {
console.log(e)
if (e.status == 200) {
Toast(e.data.msg)
this.addGoodsShow = false
if (e.status == 400) {
Toast(e.message)
this.addGoodsShow = false
}
}
}).catch(err => {
if (err == "已经导入过该商品了") {
Toast('已经导入过该商品了')
this.addGoodsShow = false
}
console.log(err);
})
// this.goods = data.list
this.goods = data.list
},
},
onPullDownRefresh() {