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 }