router.config.js 6.1 KB
Newer Older
陈帅 已提交
1 2 3 4
module.exports = [
  // user
  {
    path: '/user',
S
sorrycc 已提交
5
    component: '../layouts/UserLayout',
陈帅 已提交
6 7
    routes: [
      { path: '/user', redirect: '/user/login' },
S
sorrycc 已提交
8
      { path: '/user/login', component: './User/Login' },
陈帅 已提交
9 10 11 12 13 14 15
      { path: '/user/register', component: './User/Register' },
      { path: '/user/register-result', component: './User/RegisterResult' },
    ],
  },
  // app
  {
    path: '/',
A
afc163 已提交
16
    component: '../layouts/BasicLayout',
A
afc163 已提交
17
    Routes: ['src/pages/Authorized'],
陈帅 已提交
18 19 20 21 22 23 24 25
    routes: [
      // dashboard
      { path: '/', redirect: '/dashboard/analysis' },
      {
        path: '/dashboard',
        name: 'dashboard',
        icon: 'dashboard',
        routes: [
A
afc163 已提交
26 27 28 29 30
          {
            path: '/dashboard/analysis',
            name: 'analysis',
            component: './Dashboard/Analysis',
          },
陈帅 已提交
31 32 33 34 35 36 37 38 39 40
          { path: '/dashboard/monitor', name: 'monitor', component: './Dashboard/Monitor' },
          { path: '/dashboard/workplace', name: 'workplace', component: './Dashboard/Workplace' },
        ],
      },
      // forms
      {
        path: '/form',
        icon: 'form',
        name: 'form',
        routes: [
A
afc163 已提交
41 42 43 44 45
          {
            path: '/form/basic-form',
            name: 'basicform',
            component: './Forms/BasicForm',
          },
陈帅 已提交
46 47 48 49
          {
            path: '/form/step-form',
            name: 'stepform',
            component: './Forms/StepForm',
A
afc163 已提交
50
            hideChildrenInMenu: true,
陈帅 已提交
51
            routes: [
A
afc163 已提交
52 53 54 55 56 57 58 59 60 61
              {
                path: '/form/step-form',
                name: 'stepform',
                redirect: '/form/step-form/info',
              },
              {
                path: '/form/step-form/info',
                name: 'info',
                component: './Forms/StepForm/Step1',
              },
陈帅 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
              {
                path: '/form/step-form/confirm',
                name: 'confirm',
                component: './Forms/StepForm/Step2',
              },
              {
                path: '/form/step-form/result',
                name: 'result',
                component: './Forms/StepForm/Step3',
              },
            ],
          },
          {
            path: '/form/advanced-form',
            name: 'advancedform',
            component: './Forms/AdvancedForm',
          },
        ],
      },
      // list
      {
        path: '/list',
        icon: 'table',
        name: 'list',
        routes: [
          { path: '/list/table-list', name: 'searchtable', component: './List/TableList' },
          { path: '/list/basic-list', name: 'basiclist', component: './List/BasicList' },
          { path: '/list/card-list', name: 'cardlist', component: './List/CardList' },
          {
            path: '/list/search',
            name: 'searchlist',
            component: './List/List',
            routes: [
              { path: '/list/search/articles', name: 'articles', component: './List/Articles' },
              { path: '/list/search/projects', name: 'projects', component: './List/Projects' },
              {
                path: '/list/search/applications',
                name: 'applications',
                component: './List/Applications',
              },
            ],
          },
        ],
      },
      {
        path: '/profile',
        name: 'profile',
        icon: 'profile',
        routes: [
          // profile
          { path: '/profile/basic', name: 'basic', component: './Profile/BasicProfile' },
          { path: '/profile/advanced', name: 'advanced', component: './Profile/AdvancedProfile' },
        ],
      },
      {
        name: 'result',
        icon: 'check-circle-o',
        path: '/result',
        routes: [
          // result
          { path: '/result/success', name: 'success', component: './Result/Success' },
          { path: '/result/fail', name: 'fail', component: './Result/Error' },
        ],
      },
      {
        name: 'exception',
        icon: 'warning',
        path: '/exception',
        routes: [
          // exception
          { path: '/exception/403', name: 'not-permission', component: './Exception/403' },
          { path: '/exception/404', name: 'not-find', component: './Exception/404' },
          { path: '/exception/500', name: 'server-error', component: './Exception/500' },
          {
            path: '/exception/trigger',
            name: 'trigger',
            hideInMenu: true,
            component: './Exception/triggerException',
          },
        ],
      },
      {
        name: 'account',
        icon: 'user',
        path: '/account',
        routes: [
          {
            path: '/account/center',
            name: 'center',
            component: './Account/Center/Center',
            routes: [
A
afc163 已提交
153 154 155 156
              {
                path: '/account/center',
                redirect: '/account/center/articles',
              },
陈帅 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
              {
                path: '/account/center/articles',
                component: './Account/Center/Articles',
              },
              {
                path: '/account/center/applications',
                component: './Account/Center/Applications',
              },
              {
                path: '/account/center/projects',
                component: './Account/Center/Projects',
              },
            ],
          },
          {
            path: '/account/settings',
            name: 'settings',
            component: './Account/Settings/Info',
A
afc163 已提交
175
            // authority: ['admin'],
陈帅 已提交
176
            routes: [
A
afc163 已提交
177 178 179 180
              {
                path: '/account/settings',
                redirect: '/account/settings/base',
              },
陈帅 已提交
181 182 183 184 185 186 187 188
              {
                path: '/account/settings/base',
                component: './Account/Settings/BaseView',
              },
              {
                path: '/account/settings/security',
                component: './Account/Settings/SecurityView',
              },
A
afc163 已提交
189 190 191 192
              {
                path: '/account/settings/binding',
                component: './Account/Settings/BindingView',
              },
陈帅 已提交
193 194 195 196 197 198 199 200 201 202 203
              {
                path: '/account/settings/notification',
                component: './Account/Settings/NotificationView',
              },
            ],
          },
        ],
      },
    ],
  },
];