组庭页面开发(接口)

This commit is contained in:
Your Name
2023-09-14 18:39:56 +08:00
parent c2ca635fab
commit 2c9b918419
3 changed files with 39 additions and 17 deletions
+18
View File
@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询仲裁员列表
export function arbitrAtor(data) {
return request({
url: '/arbitrator/list',
method: 'get',
params: data
})
}
// 组庭
export function pendTral(data) {
return request({
url: '/caseApplication/pendTral',
method: 'post',
data: data
})
}