批量上传,批量操作

This commit is contained in:
fz
2023-10-20 17:25:58 +08:00
parent 035a1d6b10
commit 39bb0a47d9
14 changed files with 718 additions and 245 deletions
+32
View File
@@ -65,3 +65,35 @@ export function caseLogRecordList(data) {
params: data,
});
}
// 案件证据查询
export function getFileList(data) {
return request({
url: "/evidence/fileList",
method: "get",
params: data,
});
}
//案件状态进度
export function selectCaseProgress(data) {
return request({
url: "/caseApplication/selectCaseProgress",
method: "post",
data: data,
});
}
// 批量上传证据
export function batchUpload(data) {
return request({
url: "/evidence/batchUpload",
method: "post",
data: data,
});
}
// 修改开庭时间
export function updateHeardate(data) {
return request({
url: "/caseApplication/updateHeardate",
method: "post",
data: data,
});
}