This commit is contained in:
GaoHao 2024-11-13 13:47:16 +08:00
commit 802a8f6ce4
1 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ export default {
res.map(async item => {
if (!await this.checkShop(item.id)) {
this.form.products.push({
id: item.id,
productId: item.id,
name: item.name,
num: null
})
@ -332,7 +332,7 @@ export default {
})
} else {
this.form.products.push({
id: res[0].id,
productId: res[0].id,
name: res[0].name,
num: null
})