|
import request from '@/utils/request'
|
|
export function listPlat(query) {
|
return request({
|
url: '/th/institutional/manager/list/page',
|
method: 'get',
|
params: query
|
})
|
}
|
|
export function listPlatSelect() {
|
return request({
|
url: '/th/institutional/manager/select',
|
method: 'get'
|
})
|
}
|
|
// 新增角色
|
export function addPlat(data) {
|
return request({
|
url: '/th/institutional/manager/add',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改角色
|
export function updatePlat(data) {
|
return request({
|
url: '/th/institutional/manager/mod',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 删除角色
|
export function delPlat(id) {
|
return request({
|
url: '/th/institutional/manager/del/' + id,
|
method: 'delete'
|
})
|
}
|
|
//审核
|
export function modPlatStatus(query) {
|
return request({
|
url: '/th/institutional/manager/mod/status',
|
method: 'post',
|
data: query
|
})
|
}
|