审核调解员

This commit is contained in:
Your Name
2024-01-17 17:58:03 +08:00
parent 9e4d326150
commit a30a3e04c5
7 changed files with 475 additions and 13 deletions
+16
View File
@@ -103,3 +103,19 @@ export function selectSealUrl(data) {
data: data,
});
}
//查询预约信息
export function selectReservation(data) {
return request({
url: "/caseApplication/selectReservation",
method: "get",
params: data,
});
}
//核实调解员
export function verifyMediator(data) {
return request({
url: "/caseApplication/verifyMediator",
method: "post",
data: data,
});
}