diff --git a/src/components/DetailComponent/SummaryDetail.vue b/src/components/DetailComponent/SummaryDetail.vue index 0e3c422..0b1f73f 100644 --- a/src/components/DetailComponent/SummaryDetail.vue +++ b/src/components/DetailComponent/SummaryDetail.vue @@ -110,7 +110,7 @@ + v-if="localFormData.specialFundAmount"> {{ localFormData.specialFundAmount }} diff --git a/src/views/project-demand/summary/add.vue b/src/views/project-demand/summary/add.vue index b1cfc7c..647142f 100644 --- a/src/views/project-demand/summary/add.vue +++ b/src/views/project-demand/summary/add.vue @@ -8,25 +8,25 @@ - - + + - + - - - - + {{ getSpecialFundName(formData.specialFund) }} + + + @@ -238,7 +238,7 @@
- + 发布 重新发布
@@ -274,6 +274,7 @@ const showTable = ref(true) const otherFileList = ref([]) const file = ref({}) const formData = ref({ + isSpecialFund: false, industryUniversityResearch: '0', governmentDeclaration: '0', }) @@ -417,7 +418,7 @@ const handleSubmit = debounce(async (instance) => { // } let params = { ...formData.value, - isSpecialFund: formData.value.isSpecialFund? formData.value.isSpecialFund : false, + isSpecialFund: formData.value.isSpecialFund ? formData.value.isSpecialFund : false, deploymentId: deploymentId.value, fileList: otherFiles, singleFile: singleFile, @@ -472,7 +473,7 @@ const handleResubmit = debounce(() => { //todo requirementId let params = { ...formData.value, - isSpecialFund: formData.value.isSpecialFund? formData.value.isSpecialFund : false, + isSpecialFund: formData.value.isSpecialFund ? formData.value.isSpecialFund : false, deploymentId: deploymentId.value, fileList: otherFiles, singleFile: singleFile,