1234567891011121314151617181920212223242526272829303132333435 |
- import { resultSuccess } from '../_util';
- const menusList = [
- {
- path: '/dashboard',
- name: 'Dashboard',
- component: 'LAYOUT',
- redirect: '/dashboard',
- meta: {
- icon: 'DashboardOutlined',
- title: 'Dashboard',
- },
- children: [
- {
- path: 'console',
- name: 'dashboard',
- component: '/dashboard/index',
- meta: {
- title: '主控台',
- },
- },
- ],
- },
- ];
- export default [
- {
- url: '/api/menus',
- timeout: 1000,
- method: 'get',
- response: () => {
- return resultSuccess(menusList);
- },
- },
- ];
|