You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
250 B
JavaScript
17 lines
250 B
JavaScript
|
1 week ago
|
import {
|
||
|
|
request
|
||
|
|
} from '@/utils/request'
|
||
|
|
|
||
|
|
export function getInfo() {
|
||
|
|
return request({
|
||
|
|
url: '/system/user/getInfo',
|
||
|
|
method: 'get'
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getRouters() {
|
||
|
|
return request({
|
||
|
|
url: '/system/menu/getRouters',
|
||
|
|
method: 'get'
|
||
|
|
});
|
||
|
|
}
|