查看缴费单,缴费确认,案件受理

This commit is contained in:
gyj
2024-01-15 17:28:43 +08:00
parent d6b16862af
commit b793ad3263
4 changed files with 345 additions and 3 deletions
+24
View File
@@ -39,4 +39,28 @@ export function batchUpload(data) {
method: "post",
data: data,
});
}
// 缴费确认
export function confirmPaid(data) {
return request({
url: "/pay/confirmPaid",
method: "post",
data: data,
});
}
// 案件id查询缴费清单
export function selectPaymentDetail(data) {
return request({
url: "/pay/selectPaymentDetail",
method: "get",
params: data,
});
}
//案件受理
export function accept(data) {
return request({
url: "/caseApplication/accept",
method: "post",
data: data,
});
}