router.config.js 7.77 KB
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
module.exports = [
  // user
  {
    path: '/user',
    component: '../layouts/UserLayout',
    routes: [
      { path: '/user', redirect: '/user/login' },
      { path: '/user/login', name: 'login', component: './User/Login' },
      { path: '/user/register', name: 'register', component: './User/Register' },
      {
        path: '/user/register-result',
        name: 'register.result',
        component: './User/RegisterResult',
      },
      {
        component: '404',
      },
    ],
  },
  // app
  {
    path: '/',
    component: '../layouts/BasicLayout',
    Routes: ['src/pages/Authorized'],
    authority: ['admin', 'user'],
    routes: [
      // dashboard
      { path: '/', redirect: '/dashboard/analysis', authority: ['admin', 'user'] },
      {
        path: '/dashboard',
        name: 'dashboard',
        icon: 'dashboard',
        routes: [
          {
            path: '/dashboard/analysis',
            name: 'analysis',
            component: './Dashboard/Analysis',
          },
          {
            path: '/dashboard/monitor',
            name: 'monitor',
            component: './Dashboard/Monitor',
          },
          {
            path: '/dashboard/workplace',
            name: 'workplace',
            component: './Dashboard/Workplace',
          },
        ],
      },
      // forms
      {
        path: '/form',
        icon: 'form',
        name: 'form',
        routes: [
          {
            path: '/form/basic-form',
            name: 'basicform',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
60
            component: './Form/BasicForm',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
61 62 63 64
          },
          {
            path: '/form/step-form',
            name: 'stepform',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
65
            component: './Form/StepForm',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
66
            hideChildrenInMenu: true,
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
67 68 69 70 71 72 73 74
            // routes: [
            //   {
            //     path: '/form/step-form',
            //     redirect: '/form/step-form/info',
            //   },
            //   {
            //     path: '/form/step-form/info',
            //     name: 'info',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
75
            //     component: './Form/StepForm/Step1',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
76 77 78 79
            //   },
            //   {
            //     path: '/form/step-form/confirm',
            //     name: 'confirm',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
80
            //     component: './Form/StepForm/Step2',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
81 82 83 84
            //   },
            //   {
            //     path: '/form/step-form/result',
            //     name: 'result',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
85
            //     component: './Form/StepForm/Step3',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
86 87
            //   },
            // ],
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
88 89 90 91 92
          },
          {
            path: '/form/advanced-form',
            name: 'advancedform',
            authority: ['admin'],
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
93
            component: './Form/AdvancedForm',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
94 95 96 97 98 99 100 101 102 103 104 105
          },
        ],
      },
      // list
      {
        path: '/list',
        icon: 'table',
        name: 'list',
        routes: [
          {
            path: '/list/table-list',
            name: 'searchtable',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
106
            component: './list/Tablelist',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
107 108 109 110
          },
          {
            path: '/list/basic-list',
            name: 'basiclist',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
111
            component: './list/Basiclist',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
112 113 114 115
          },
          {
            path: '/list/card-list',
            name: 'cardlist',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
116
            component: './list/Cardlist',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
117 118 119
          },
          {
            path: '/list/search',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
120
            name: 'search-list',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
121
            component: './list/search',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
122 123 124 125 126 127 128 129
            routes: [
              {
                path: '/list/search',
                redirect: '/list/search/articles',
              },
              {
                path: '/list/search/articles',
                name: 'articles',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
130
                component: './list/Articles',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
131 132 133 134
              },
              {
                path: '/list/search/projects',
                name: 'projects',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
135
                component: './list/Projects',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
136 137 138 139
              },
              {
                path: '/list/search/applications',
                name: 'applications',
ι™ˆεΈ…'s avatar
commit  
ι™ˆεΈ… committed
140
                component: './list/Applications',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
              },
            ],
          },
        ],
      },
      {
        path: '/profile',
        name: 'profile',
        icon: 'profile',
        routes: [
          // profile
          {
            path: '/profile/basic',
            name: 'basic',
            component: './Profile/BasicProfile',
          },
          {
            path: '/profile/basic/:id',
            hideInMenu: true,
            component: './Profile/BasicProfile',
          },
          {
            path: '/profile/advanced',
            name: 'advanced',
            authority: ['admin'],
            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',
          },
        ],
      },
      {
        name: 'account',
        icon: 'user',
        path: '/account',
        routes: [
          {
            path: '/account/center',
            name: 'center',
            component: './Account/Center/Center',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
            // routes: [
            //   {
            //     path: '/account/center',
            //     redirect: '/account/center/articles',
            //   },
            //   {
            //     path: '/account/center/articles',
            //     component: './Account/Center/Articles',
            //   },
            //   {
            //     path: '/account/center/applications',
            //     component: './Account/Center/Applications',
            //   },
            //   {
            //     path: '/account/center/projects',
            //     component: './Account/Center/Projects',
            //   },
            // ],
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
234 235 236 237 238
          },
          {
            path: '/account/settings',
            name: 'settings',
            component: './Account/Settings/Info',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
            // routes: [
            //   {
            //     path: '/account/settings',
            //     redirect: '/account/settings/base',
            //   },
            //   {
            //     path: '/account/settings/base',
            //     component: './Account/Settings/BaseView',
            //   },
            //   {
            //     path: '/account/settings/security',
            //     component: './Account/Settings/SecurityView',
            //   },
            //   {
            //     path: '/account/settings/binding',
            //     component: './Account/Settings/BindingView',
            //   },
            //   {
            //     path: '/account/settings/notification',
            //     component: './Account/Settings/NotificationView',
            //   },
            // ],
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
          },
        ],
      },
      //  editor
      {
        name: 'editor',
        icon: 'highlight',
        path: '/editor',
        routes: [
          {
            path: '/editor/flow',
            name: 'flow',
            component: './Editor/GGEditor/Flow',
          },
          {
            path: '/editor/mind',
            name: 'mind',
            component: './Editor/GGEditor/Mind',
          },
          {
            path: '/editor/koni',
            name: 'koni',
            component: './Editor/GGEditor/Koni',
          },
        ],
      },
      {
        component: '404',
      },
    ],
  },
];