选择调解员,时间

This commit is contained in:
Your Name
2024-01-17 09:10:49 +08:00
4 changed files with 46 additions and 11 deletions
+17 -2
View File
@@ -72,7 +72,6 @@ export function selectPaymentDetail(data) {
data: data,
});
}
//获取调解员列表
export function listMediator(data) {
return request({
url: "caseApplication/listMediator",
@@ -87,4 +86,20 @@ export function updateBooking(data) {
method: "post",
data: data,
});
}
}
//用印申请
export function sealApply(data) {
return request({
url: "/mssignSeal/sealApply",
method: "post",
data: data,
});
}
// 用印确认
export function selectSealUrl(data) {
return request({
url: "/mssignSeal/selectSealUrl",
method: "post",
data: data,
});
}