案件批量录入接口联调

This commit is contained in:
Your Name
2023-09-12 21:24:03 +08:00
parent bf4ae7e8f4
commit 8b735d148d
4 changed files with 193 additions and 92 deletions
+11 -2
View File
@@ -4,8 +4,8 @@ import request from '@/utils/request'
export function caseApply(data) {
return request({
url: '/caseApplication/list',
method: 'post',
data: data
method: 'get',
params: data
})
}
@@ -49,3 +49,12 @@ export function submitCaseApply(data) {
data: data
})
}
// 下载模板
export function importTemplate(data) {
return request({
url: '/caseApplication/importTemplate',
method: 'post',
data: data
})
}