预约评标室

This commit is contained in:
517612449@qq.com
2022-08-12 17:08:43 +08:00
parent a7ff7ccd9d
commit 64b401eda5
2 changed files with 209 additions and 180 deletions

View File

@ -7,10 +7,18 @@ export async function reserveList(data: any) { // 查询会议室/评标室预
});
}
export async function roomList(data: any) { // 查询评标室列表
export async function roomList() { // 查询评标室列表
///api/biz-service-ebtp-evaluation
return request('http://localhost:18017/v1/elec/eval/room/list', {
return request('/v1/elec/eval/room/list', {
method: 'get',
params: {}
});
}
export async function cancelReserve(id: any) { // 取消预约
///api/biz-service-ebtp-evaluation
return request('/v1/eval/room/reserve/cancel'+`${id}`, {
method: 'get',
params: data
});
}