This commit is contained in:
Your Name
2024-01-15 17:58:43 +08:00
4 changed files with 352 additions and 15 deletions
+24
View File
@@ -47,4 +47,28 @@ export function submitCaseApply(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,
});
}