缴费,案件详情问题处理

This commit is contained in:
Your Name
2024-01-15 17:46:58 +08:00
parent d6b16862af
commit 0ca62df2fa
16 changed files with 1618 additions and 382 deletions
+11 -3
View File
@@ -35,8 +35,16 @@ export function getFileList(data) {
/** 批量上传证据 */
export function batchUpload(data) {
return request({
url: "/caseApplication/batchUpdateAttach",
method: "post",
data: data,
url: "/caseApplication/batchUpload",
method: "post",
data: data,
});
}
// 提交
export function submitCaseApply(data) {
return request({
url: '/caseApplication/submit',
method: 'post',
data: data
})
}