17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
![]() |
import request from '@/utils/request';
|
||
|
|
||
|
export async function reserveList(data: any) { // 查询会议室/评标室预约情况
|
||
|
return request('/v1/eval/room/reserve/list', {
|
||
|
method: 'post',
|
||
|
data: {...data,pageNo: data.current}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export async function roomList(data: any) { // 查询评标室列表
|
||
|
///api/biz-service-ebtp-evaluation
|
||
|
return request('http://localhost:18017/v1/elec/eval/room/list', {
|
||
|
method: 'get',
|
||
|
params: data
|
||
|
});
|
||
|
}
|