children117cl
2021-06-25 b61d3353ae963c0430258230649951e423fbdbee
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
// 路由配置文件
import Layout from '@/layout'
 
export default {
  path: '/agreement',
  component: Layout,
  redirect: 'noRedirect',
  name: 'agreement',
  meta: {
    title: '文档说明',
    icon: 'agreement'
  },
  children: [
    {
      path: 'index0',
      component: () => import('@/pages/agreement/index'), // Parent router-view
      name: 'agreement0',
      meta: { title: '报价公告及违规规则', type: 1 },
      auth: 'sys_text_explain_edit'
    },
    {
      path: 'index1',
      component: () => import('@/pages/agreement/index'), // Parent router-view
      name: 'agreement1',
      meta: { title: '竞价平台中标原则及公告', type: 2 },
      auth: 'sys_text_explain_edit'
    },
    {
      path: 'index2',
      component: () => import('@/pages/agreement/index'), // Parent router-view
      name: 'agreement2',
      meta: { title: '操作流程说明', type: 3 },
      auth: 'sys_text_explain_edit'
    }
  ]
}