批量页面开发,接口联调

This commit is contained in:
gyj
2024-01-02 17:57:03 +08:00
parent 6cd4f2843c
commit 7dc3c11f06
6 changed files with 291 additions and 21 deletions
@@ -15,4 +15,20 @@ export function submitCaseApplicationBatch(data) {
method: 'post',
data: data
})
}
// 批量立案审查
export function submitCaseApplicationCheckBatch(data) {
return request({
url: '/caseApplication/submitCaseApplicationCheckBatch',
method: 'post',
data: data
})
}
// 批量缴费
export function confirmPayBatch(data) {
return request({
url: '/pay/confirmPayBatch',
method: 'post',
data: data
})
}