wwf
22 小时以前 737179a0ce34147269cccf288fecd0e7bb4c309b
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
import home from '@/router/main/home/index.js'
import notice from '@/router/main/notice/index.js'
import appraisalPlan from '@/router/main/appraisalPlan'
import examTicket from '@/router/main/examTicket/index.js'
import score from '@/router/main/score/index.js'
import certificate from '@/router/main/certificate/index.js'
import center from '@/router/main/center/index.js'
 
const mainRouter = [
  ...home,
  ...notice,
  ...appraisalPlan,
  ...examTicket,
  ...score,
  ...certificate,
  ...center
]
const router = [
  {
    path: '/main',
    name: '用户端',
    component: () => import('@/views/main/index.vue'),
    children: mainRouter,
  },
]
export default router