123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- export default [
- {
- path: '/',
- routes: [
- { path: '/', redirect: '/login' },
- {
- path: '/login',
- component: './Login/Login',
- },
- {
- path: '/bom',
- redirect: '/home',
- },
- {
- path: '/home',
- component: './Index',
- routes: [
- {
- path: '/home',
- component: './List/List',
- },
- {
- path: '/home/detail/:projectId/:templateId',
- component: './Detail/Index',
- },
- {
- path: '/home/flow/:flowId',
- component: './Flow/Flow',
- },
- {
- path: '/home/audit',
- component: './Flow/Audit',
- },
- {
- path: '/home/audit-list',
- component: './Flow/AuditList',
- },
- {
- path: '/home/flow-list',
- component: './Flow/List',
- },
- {
- path: '/home/auth',
- component: './Auth/Auth',
- },
- ],
- },
- // {
- // path: '/dd-login/:dingUserId',
- // component: './DDLogin/index',
- // },
- // {
- // path: '/mobiletest/chart',
- // component: './Mobile/DataMeter/Chart',
- // },
- {
- component: '404',
- },
- ],
- },
- ];
|