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) => {
|
export const payGovermentSubItemDetail = (params: any) => {
|
||||||
return http.post(BASEURL + `/gov/investmentPaymentDetail/page`, params);
|
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) => {
|
export const payGovermentSubItemCount = (params: any) => {
|
||||||
return http.post(BASEURL + `/gov/investmentPaymentStat/queryByApplyId`, params);
|
return http.post(BASEURL + `/gov/investmentPaymentStat/queryByApplyId`, params);
|
||||||
|
|||||||
@ -275,7 +275,7 @@ const handleEditItem = async (row: any) => {
|
|||||||
auditVisible.value = true;
|
auditVisible.value = true;
|
||||||
};
|
};
|
||||||
const getSubDetailList = async (id: any) => {
|
const getSubDetailList = async (id: any) => {
|
||||||
const res = await payGovermentSubItemDetail({ itemId: id });
|
const res = await payGovermentSubItemDetail({ itemId: id, pageSize: -1 });
|
||||||
if (res) {
|
if (res) {
|
||||||
recordItemData.value = res.result.records;
|
recordItemData.value = res.result.records;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -702,7 +702,7 @@ const handleItemDetails = async (row: any) => {
|
|||||||
auditVisible.value = true;
|
auditVisible.value = true;
|
||||||
};
|
};
|
||||||
const getSubDetailList = async (id: any) => {
|
const getSubDetailList = async (id: any) => {
|
||||||
const res = await payGovermentSubItemDetail({ itemId: id });
|
const res = await payGovermentSubItemDetail({ itemId: id, pageSize: -1 });
|
||||||
if (res) {
|
if (res) {
|
||||||
recordItemData.value = res.result.records;
|
recordItemData.value = res.result.records;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user