fix: BUG修改
This commit is contained in:
parent
8b3f8d8b32
commit
4af05c71c3
@ -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);
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user