注册前部署

This commit is contained in:
fz
2023-10-16 11:26:18 +08:00
parent 8038a93865
commit 49b1676825
23 changed files with 1027 additions and 49 deletions
+16
View File
@@ -37,4 +37,20 @@ export function evidenceCrossexami(data) {
method: 'post',
data:data
})
}
// 查询物流信息
export function logistics(data) {
return request({
'url': `/adjudication/logistics`,
method: 'get',
data:data
})
}
// 查询案件列表
export function caseApplicationList(data) {
return request({
'url': `/caseApplication/list`,
method: 'get',
params:data
})
}