From 5268589cb9c171eb760748ac7ca869d6bd0b607a Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Thu, 15 Jan 2026 17:31:17 +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/HandleFormItem.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index 248960f..ae6b245 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -34,7 +34,7 @@
-
@@ -453,6 +453,18 @@ export default { } this.$emit("clickable", item) }, + //判断是否禁用复选框 + getCheckboxDisabled(){ + //只有qc能操作checkbox,其他都只能看。 + return this.templateFillType !== 'qc' + }, + //判断是否显示复选框图标 + getIsShowCheckboxIcon() { + if(this.templateFillType === 'qc'){ + return true; + } + return this.getChecked(); + }, //判断是否显示复制按钮 getIsShowCopyIcon() { const { copyFrom } = this.item;