From 4af05c71c3129589c26d9e9de5cce68a9f390a43 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Tue, 26 Mar 2024 10:00:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modules/huizhou.ts | 4 ++++ .../investmentPayment/components/transformInfo2.vue | 2 +- .../planFinishSituation/components/transformInfo1.vue | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/api/modules/huizhou.ts b/src/api/modules/huizhou.ts index 6721b3e..900b9bd 100644 --- a/src/api/modules/huizhou.ts +++ b/src/api/modules/huizhou.ts @@ -165,6 +165,10 @@ export const payGovermentSubItemList = (params: any) => { export const payGovermentSubItemDetail = (params: any) => { return http.post(BASEURL + `/gov/investmentPaymentDetail/page`, params); }; +// 投资支付子项详细数据(列表数据) +export const payGovermentSubItemDetailList = (params: any) => { + return http.post(BASEURL + `/gov/investmentPaymentDetail/list`, params); +}; // 投资支付子项统计数据 export const payGovermentSubItemCount = (params: any) => { return http.post(BASEURL + `/gov/investmentPaymentStat/queryByApplyId`, params); diff --git a/src/views/goverment/huizhou/progressManagement/investmentPayment/components/transformInfo2.vue b/src/views/goverment/huizhou/progressManagement/investmentPayment/components/transformInfo2.vue index 0953ee1..bd6d3b6 100644 --- a/src/views/goverment/huizhou/progressManagement/investmentPayment/components/transformInfo2.vue +++ b/src/views/goverment/huizhou/progressManagement/investmentPayment/components/transformInfo2.vue @@ -275,7 +275,7 @@ const handleEditItem = async (row: any) => { auditVisible.value = true; }; const getSubDetailList = async (id: any) => { - const res = await payGovermentSubItemDetail({ itemId: id }); + const res = await payGovermentSubItemDetail({ itemId: id, pageSize: -1 }); if (res) { recordItemData.value = res.result.records; } diff --git a/src/views/goverment/huizhou/progressManagement/planFinishSituation/components/transformInfo1.vue b/src/views/goverment/huizhou/progressManagement/planFinishSituation/components/transformInfo1.vue index 6daf942..31787f0 100644 --- a/src/views/goverment/huizhou/progressManagement/planFinishSituation/components/transformInfo1.vue +++ b/src/views/goverment/huizhou/progressManagement/planFinishSituation/components/transformInfo1.vue @@ -702,7 +702,7 @@ const handleItemDetails = async (row: any) => { auditVisible.value = true; }; const getSubDetailList = async (id: any) => { - const res = await payGovermentSubItemDetail({ itemId: id }); + const res = await payGovermentSubItemDetail({ itemId: id, pageSize: -1 }); if (res) { recordItemData.value = res.result.records; }