feat(商品管理): 添加商品复制功能并优化批量操作

- 在商品操作页面添加复制商品功能,通过copyId参数区分复制操作
- 复制商品时自动清除原商品ID确保提交为新商品
- 优化批量操作按钮功能,包括上架、下架、删除和设置物流模板
- 移除未使用的批量规格更新功能
- 调整商品列表操作按钮布局,将复制功能加入操作列
This commit is contained in:
pikachu1995@126.com
2025-09-09 17:04:58 +08:00
parent 7db8484a7c
commit 7b30ea343f
3 changed files with 87 additions and 132 deletions

View File

@@ -44,8 +44,8 @@ export default {
}
},
mounted() {
// 编辑商品、模板
if (this.$route.query.id || this.$route.query.draftId) {
// 编辑商品、模板、复制商品
if (this.$route.query.id || this.$route.query.draftId || this.$route.query.copyId) {
this.activestep = 1;
} else {
this.activestep = 0