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; }