查询授权信息
This commit is contained in:
@ -80,7 +80,7 @@ export async function getGroupList() {
|
||||
* @param params
|
||||
*/
|
||||
export async function getAuthorizeList(id?: any) {
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/eval/room/site//authorize/info?id='+id, {
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/eval/room/site/authorize/info?id='+id, {
|
||||
method: 'get',
|
||||
});
|
||||
}
|
||||
@ -108,61 +108,3 @@ export async function addAuthorize(params: any) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 查询数据并分页
|
||||
* @param params
|
||||
*/
|
||||
export async function getList(params?: any) {
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/eval/room/site/person/page', {
|
||||
method: 'get',
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export async function getPlaceList() { // 列表
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/elec/eval/place/userlimit/list', {
|
||||
method: 'get',
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增
|
||||
* @param params
|
||||
*/
|
||||
export async function saveSitePerson(data?: any) {
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/eval/room/site/person/save', {
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param params
|
||||
*/
|
||||
export async function delSitePerson(id?: any) {
|
||||
return request('/api/biz-service-ebtp-evaluation/v1/eval/room/site/person/delete?id='+id, {
|
||||
method: 'post',
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user