批量上传,批量操作
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user