证据清单,上传证据

This commit is contained in:
fz
2024-01-12 14:03:10 +08:00
parent fb3c6183b4
commit be7b76f236
4 changed files with 537 additions and 318 deletions
+17 -1
View File
@@ -23,4 +23,20 @@ export function caseApplicationSelectById(data) {
method: 'get',
params: data
})
}
}
/** 案件证据查询 */
export function getFileList(data) {
return request({
url: "/common/fileList",
method: "get",
params: data,
});
}
/** 批量上传证据 */
export function batchUpload(data) {
return request({
url: "/caseApplication/batchUpdateAttach",
method: "post",
data: data,
});
}