From a0c8a2eb778d529f77a347cba7382acde0916742 Mon Sep 17 00:00:00 2001 From: lixiangyu <lixiangyu@xalxzn.com> Date: 星期一, 15 九月 2025 13:29:01 +0800 Subject: [PATCH] feat(cms): 重写了刀具报废新增逻辑, 从通过刀具信息选取刀具改为通过刀具库存里的数据获取刀具 修改库存id存入刀具id的错误 --- src/views/lsw/modules/LswMaterialInboundModal.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/lsw/modules/LswMaterialInboundModal.vue b/src/views/lsw/modules/LswMaterialInboundModal.vue index 45eb4f4..348d409 100644 --- a/src/views/lsw/modules/LswMaterialInboundModal.vue +++ b/src/views/lsw/modules/LswMaterialInboundModal.vue @@ -29,10 +29,10 @@ } }, methods: { - add () { + add (inboundCategory) { this.visible=true this.$nextTick(()=>{ - this.$refs.realForm.add(); + this.$refs.realForm.add(inboundCategory); }) }, edit (record) { -- Gitblit v1.9.3