From b9b62f25dd6cce87eaec34968acafac15c062aaf Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Tue, 13 Jan 2026 21:38:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86][?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/BaseInfoFormPcakge.vue | 3 + src/components/Template/HandleFormItem.vue | 277 ++++++++++++--------- src/components/Template/icons/Question.vue | 8 +- .../business/comps/template/TemplateTable.vue | 8 + 4 files changed, 176 insertions(+), 120 deletions(-) diff --git a/src/components/Template/BaseInfoFormPcakge.vue b/src/components/Template/BaseInfoFormPcakge.vue index 78599d6..ec26ce0 100644 --- a/src/components/Template/BaseInfoFormPcakge.vue +++ b/src/components/Template/BaseInfoFormPcakge.vue @@ -299,6 +299,7 @@ export default { label: "其他", fillType: sItem.fillType, maxlength: sItem.otherMaxlength || 50, + parentLabel: sItem.label, } }, getClickableItem(sItem) { @@ -306,6 +307,7 @@ export default { label: "", type: "clickable", fillType: sItem.subFillType || sItem.fillType, + parentLabel: sItem.label, } }, getSubItem(sItem) { @@ -313,6 +315,7 @@ export default { label: "", options: sItem.subOptions || [], fillType: sItem.subFillType || sItem.fillType, + parentLabel: sItem.label, } }, isShowOther(v = []) { diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index 01a4031..e8ead69 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -3,71 +3,66 @@