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.

27 lines
481 B

import request from '@/utils/request'
// 查询当前用户APP菜单显示情况
export function appMenuShowInfo() {
return request({
url: '/system/menu/appMenuShowInfo',
method: 'get'
})
}
// 修改当前用户APP菜单显示情况
export function updateMenuShowInfo(data) {
return request({
url: '/system/menu/updateMenuShowInfo',
method: 'put',
data: data
})
}
export function sendList() {
return request({
url: '/oa/scroll/sendList',
method: 'get'
})
}