From bcb330f18c58e63f60df7de36c9932334b9660d0 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Wed, 11 Feb 2026 10:17:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=E4=BE=9B=E8=AF=95=E5=93=81003?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/comps/template/comps/gsp/GSP003.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/business/comps/template/comps/gsp/GSP003.vue b/src/views/business/comps/template/comps/gsp/GSP003.vue index 27bc800..1a17748 100644 --- a/src/views/business/comps/template/comps/gsp/GSP003.vue +++ b/src/views/business/comps/template/comps/gsp/GSP003.vue @@ -85,6 +85,7 @@ export default { calcFormConfig: { label: 'template.gsp.GSP003.calcConditionLabel', type: "input", + span:1, fillType: "preFill", maxlength: 50 }, @@ -209,6 +210,7 @@ export default { label: 'template.gsp.GSP003.sfxyzjfx', type: "select", with:'100%', + span:1, fillType: "actFill", options: [ {label:'是',value:'是'}, @@ -352,6 +354,7 @@ export default { getFilledFormData() { const baseData = this.$refs.baseInfoRef.getFilledFormData(); const conditionData = this.$refs.storageConditionRef.getFilledFormData(); + const calcConditionData = this.$refs.calcConditionRef.getFilledFormData(); const formConfigsData = []; if (this.formData.formConfigs && this.formData.formConfigs.length > 0) { for (let i = 0; i < this.formData.formConfigs.length; i++) { @@ -370,6 +373,7 @@ export default { return { ...baseData, ...conditionData, + ...calcConditionData, formConfigs: formConfigsData, ...remarkData }