小程序详情

This commit is contained in:
gyj
2024-05-24 14:52:26 +08:00
parent 48d35a7d92
commit 9e008b4dae
8 changed files with 432 additions and 24 deletions
+10 -2
View File
@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询被申请人案件列表
export function respondentList(data) {
return request({
'url': '/evidence/all',
'url': '/caseApplication/list',
method: 'get',
params: data
})
@@ -200,4 +200,12 @@ export function deleteFile(data) {
method: "post",
data: data,
})
}
}
// 仲裁案件详情
export function selectCaseApplication(data) {
return request({
url: "/caseApplication/selectCaseApplication",
method: "post",
data: data,
})
}