diff --git a/src/api/project-demand/summary/index.js b/src/api/project-demand/summary/index.js
index 5fc3430..a23f224 100644
--- a/src/api/project-demand/summary/index.js
+++ b/src/api/project-demand/summary/index.js
@@ -18,9 +18,10 @@ export const requirementReported = (data) => {
data: data
});
};
-export const getProcessInfo = () => {
+//获取需求上报 流程信息
+export const getProcessInfo = (specialFund) => {
return request({
- url: '/workflow/mosr/requirement/collect/process',
+ url: `/workflow/mosr/requirement/collect/process/${specialFund}`,
method: "get"
});
};
diff --git a/src/components/DetailComponent/SpecialFundDetail.vue b/src/components/DetailComponent/SpecialFundDetail.vue
index f8d6a6a..7806e87 100644
--- a/src/components/DetailComponent/SpecialFundDetail.vue
+++ b/src/components/DetailComponent/SpecialFundDetail.vue
@@ -10,12 +10,12 @@
- {{ formData.fundAmount }}
+ {{ toThousands(formData.fundAmount) }}
- {{ formData.residualAmount }}
+ {{ toThousands(formData.residualAmount) }}
@@ -72,16 +72,18 @@
-
+
diff --git a/src/components/DetailComponent/SummaryDetail.vue b/src/components/DetailComponent/SummaryDetail.vue
index 9673ff6..da790e8 100644
--- a/src/components/DetailComponent/SummaryDetail.vue
+++ b/src/components/DetailComponent/SummaryDetail.vue
@@ -8,7 +8,7 @@
-
+
{{localFormData.specialFund }}
@@ -105,13 +105,13 @@
- {{ localFormData.economicEstimate }}
+ {{toThousands( localFormData.economicEstimate )}}
- {{ localFormData.specialFundAmount }}
+ v-if="localFormData.isSpecialFund">
+ {{ toThousands(localFormData.specialFundAmount) }}
@@ -163,6 +163,7 @@