1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- const routerConfig = [
- {
- "path": "/dashboard",
- "name": "dashboard",
- "icon": "dashboard",
- "children": [
- {
- "path": "/dashboard/home",
- "name": "analysis",
- },
- {
- "path": "/dashboard/test",
- "name": "monitor"
- },
- ]
- },
- {
- "path": "/user",
- "name": "dashboard",
- "icon": "dashboard",
- "children": [
- {
- "path": "/user/analysis",
- "name": "analysis",
- },
- {
- "path": "/user/monitor",
- "name": "monitor"
- },
- {
- "path": "/user/workplace",
- "name": "workplace"
- }
- ]
- },
- ]
- //获取菜单信息
- const getMenus = (req, res) => {
- res.send({
- status: 'OK',
- data: routerConfig,
- msg: ''
- });
- }
- const proxy = {
- 'GET /api/getMenus': getMenus
- }
- export default proxy
|