You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
import Layout from '@/views/layout/Layout'
|
|
|
|
const building = {
|
|
path: '/building',
|
|
component: Layout,
|
|
code: '0300',
|
|
meta: {title: '党的建设', icon: 'dingdan', noCache: true, affix: false},
|
|
children: [
|
|
{
|
|
path: '/building1',
|
|
code: '0301',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '中心组学习',
|
|
meta: {title: '中心组学习', noCache: false, affix: false}
|
|
},
|
|
{
|
|
path: '/building2',
|
|
code: '0302',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '示范党委',
|
|
meta: {title: '示范党委', noCache: false, affix: false},
|
|
},
|
|
{
|
|
path: '/building3',
|
|
code: '0303',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '党支部达标',
|
|
meta: {title: '党支部达标', noCache: false, affix: false},
|
|
},
|
|
{
|
|
path: '/building4',
|
|
code: '0304',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '群团工作',
|
|
meta: {title: '群团工作', noCache: false, affix: false},
|
|
},
|
|
{
|
|
path: '/building5',
|
|
code: '0305',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '党建动态',
|
|
meta: {title: '党建动态', noCache: false, affix: false},
|
|
},
|
|
{
|
|
path: '/building6',
|
|
code: '0306',
|
|
component: () => import('@/views/lists/index'),
|
|
name: '党风廉政',
|
|
meta: {title: '党风廉政', noCache: false, affix: false},
|
|
},
|
|
]
|
|
};
|
|
|
|
export default building
|
|
|