update:商品映射配置新增商品货号提交字段 并且提交后获取最新表单数据

This commit is contained in:
lihaoyuan 2025-10-28 18:38:44 +08:00
parent 2f34bf490b
commit e45e05fe99
2 changed files with 3 additions and 0 deletions

View File

@ -310,6 +310,7 @@
specUnit: item.specUnit, specUnit: item.specUnit,
description: item.description, description: item.description,
sortOrder: item.sortOrder, sortOrder: item.sortOrder,
productNumber:item.productNumber
})) }))
// //
@ -343,6 +344,7 @@
if (res.status === 200) { if (res.status === 200) {
this.$message.success('操作成功'); this.$message.success('操作成功');
this.$emit('refresh'); //
this.drawerVisible = false; // this.drawerVisible = false; //
} else { } else {
this.$message.error('操作失败: ' + res.msg); this.$message.error('操作失败: ' + res.msg);

View File

@ -156,6 +156,7 @@
:mode="formMode" :mode="formMode"
:shop-list-data="shopList" :shop-list-data="shopList"
@success="handleSuccess" @success="handleSuccess"
@refresh="getGoodsList"
/> />
<BatchProductOperation :visible.sync="batchVisible"/> <BatchProductOperation :visible.sync="batchVisible"/>