测试修改bug

This commit is contained in:
gyj
2024-02-19 17:14:28 +08:00
parent 2ea35c9d4b
commit c8a6c4edfa
7 changed files with 167 additions and 34 deletions
+26 -2
View File
@@ -124,7 +124,7 @@ export function updateComfire(data) {
//提交案件
export function caseAppSubmit(data) {
return request({
'url': `/caseApplication/submit`,
url: '/caseApplication/submit',
method: 'post',
data: data
})
@@ -136,4 +136,28 @@ export function caseApplicationSelectById(data) {
method: 'get',
params: data
})
}
}
// 删除案件
export function caseDelete(data) {
return request({
url: '/caseApplication/delete',
method: 'post',
data: data
})
}
// 案件id查询缴费清单
export function selectPaymentDetail(data) {
return request({
url: '/pay/selectPaymentDetail',
method: 'get',
params: data
})
}
// 缴费确认
export function confirmPaid(data) {
return request({
url: '/pay/confirmPaid',
method: 'post',
data: data
})
}