fix: BUG修改

This commit is contained in:
kun 2024-03-26 10:00:20 +08:00
parent 8b3f8d8b32
commit 4af05c71c3
3 changed files with 6 additions and 2 deletions

View File

@ -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);

View File

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

View File

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