From e8d589ecc80979e324f695261ef966dfafff2ef3 Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Fri, 6 Mar 2026 11:21:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86][upd?= =?UTF-8?q?ate]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/CustomTable.vue | 3 +++ src/components/Template/HandleFormItem.vue | 4 +++- src/components/Template/mixins/formPackageMixins.js | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/Template/CustomTable.vue b/src/components/Template/CustomTable.vue index fc94084..2a57e7f 100644 --- a/src/components/Template/CustomTable.vue +++ b/src/components/Template/CustomTable.vue @@ -766,6 +766,9 @@ export default { if (col.qxbdType) { item.qxbdType = col.qxbdType; } + if (col.regentFillType) { + item.regentFillType = col.regentFillType; + } if (col.checkType) { item.checkType = col.checkType; } diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index 38e8739..af4fb14 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -597,9 +597,11 @@ export default { }, //统一处理试剂/供试品等弹窗 onCommonHandleRegent(item, type) { - if (this.templateFillType !== 'actFill') { + const {regentFillType = "actFill"} = item; + if (this.templateFillType !== regentFillType) { return } + this.handleRegentDialog(item, type); let params = { studyFormId: this.templateData.id, uuid: this.uuid, diff --git a/src/components/Template/mixins/formPackageMixins.js b/src/components/Template/mixins/formPackageMixins.js index 9298984..7e67838 100644 --- a/src/components/Template/mixins/formPackageMixins.js +++ b/src/components/Template/mixins/formPackageMixins.js @@ -76,6 +76,7 @@ export default { filledCodes: item.filledCodes, qxbdType: item.qxbdType, checkType: item.checkType, + regentFillType: item.regentFillType, } },