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.
19 lines
428 B
19 lines
428 B
|
3 years ago
|
// 系统授权相关
|
||
|
|
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
|
||
|
|
})
|
||
|
|
}
|