You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
// 系统授权相关
|
|
|
|
|
import request from '@/utils/requestFile'
|
|
|
|
|
|
|
|
|
|
//获取系统列表列表
|
|
|
|
|
export const getsystemlist = (data) => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/powerpc/system_list',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//获取系统菜单树
|
|
|
|
|
export const getSystemMenuThree = (data) => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/powerpc/system_about_menu',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//编辑权限
|
|
|
|
|
export const editPower = (data) => {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/powerpc/edit_power_new',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|