This commit is contained in:
hanchaobo
2024-01-19 18:02:16 +08:00
parent b9991b5346
commit d2381806dc
6 changed files with 354 additions and 87 deletions
+2
View File
@@ -123,6 +123,8 @@ export function verifyMediator(data) {
export function confirmDate(data) {
return request({
url: "/caseApplication/confirmDate",
method: "post",
data: data,
})
}
// 查看案件流程
+19
View File
@@ -0,0 +1,19 @@
import request from '@/utils/request'
// 生成会议号
export function createRoomId(data) {
return request({
url: 'video/createRoomId',
method: 'get',
params: data
})
}
// 根据案件id查询房间号
export function reserveConferenceList(data) {
return request({
url: 'video/reserveConferenceList',
method: 'get',
params: data
})
}