From 8fc09566cc3ee8d0dae10992de31d0f09f257bb4 Mon Sep 17 00:00:00 2001 From: zhang_12370 <z2864490065@outlook.com> Date: 星期二, 08 七月 2025 17:58:04 +0800 Subject: [PATCH] 1、删除通过审核进入正式库存的采购记录,页面弹出报错信息 2、开发首页模块 3、开发设备领用记录 4、调整生产明细不能为负数 5、修复采购登记人匹配问题 --- src/views/archiveManagement/mould/archiveDialog.vue | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/views/archiveManagement/mould/archiveDialog.vue b/src/views/archiveManagement/mould/archiveDialog.vue index 07b1e00..d60cd84 100644 --- a/src/views/archiveManagement/mould/archiveDialog.vue +++ b/src/views/archiveManagement/mould/archiveDialog.vue @@ -101,9 +101,9 @@ const initTreeDataId = ref(null); const fileUploadRef = ref(null); const initForm = (val) => { - initTreeDataId.value = val.value.id || null; // 纭繚 initTreeDataId 鍒濆鍖栦负 null + initTreeDataId.value = val.id || null; // 纭繚 initTreeDataId 鍒濆鍖栦负 null ruleForm.value = {}; - ruleForm.value.treeId = val.value.id || null; // 纭繚 treeId 鍒濆鍖栦负 null + ruleForm.value.treeId = val.id || null; // 纭繚 treeId 鍒濆鍖栦负 null nextTick(() => { fileUploadRef.value.init(); }); @@ -146,9 +146,6 @@ }); return; } - // 鍙戦�� emit 浜嬩欢 - - // 鍏抽棴瀵硅瘽妗� centerDialogVisible.value = false; } catch (error) { ElMessage({ -- Gitblit v1.9.3