选择调解员,时间

This commit is contained in:
Your Name
2024-01-16 18:06:41 +08:00
parent 69e4838567
commit 89b5718794
4 changed files with 204 additions and 1 deletions
+16
View File
@@ -71,4 +71,20 @@ export function selectPaymentDetail(data) {
method: "post",
data: data,
});
}
//获取调解员列表
export function listMediator(data) {
return request({
url: "caseApplication/listMediator",
method: "get",
params: data,
});
}
// 确认仲裁员以及时间
export function updateBooking(data) {
return request({
url: "/caseApplication/updateBooking",
method: "post",
data: data,
});
}