批量列表开发

This commit is contained in:
gyj
2023-12-29 17:26:45 +08:00
parent 4a3c470cf9
commit 6cd4f2843c
10 changed files with 910 additions and 98 deletions
@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 批量案件查询
export function listBatch(data) {
return request({
url: '/caseApplication/listBatch',
method: 'get',
params: data
})
}
// 批量提交
export function submitCaseApplicationBatch(data) {
return request({
url: '/caseApplication/submitCaseApplicationBatch',
method: 'post',
data: data
})
}