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.

69 lines
1.3 KiB

2 years ago
import Layout from '@/layout'
2 years ago
const codemenu = [{
path: '/xxzxqbxx',
component: Layout,
redirect: '/qbxx/index',
meta: {
title: '全部消息'
},
children: [{
path: '/qbxx/index',
component: () => import('@/views/message/qbxx.vue'),
name: 'XxzxQbxx',
meta: {
title: '全部消息',
noCache: true
}
}]
}, {
path: '/xxzxwdxx',
component: Layout,
redirect: '/wdxx/index',
meta: {
title: '未读消息'
},
children: [{
path: '/wdxx/index',
component: () => import('@/views/message/unreadmessage.vue'),
2 years ago
name: 'XxzxWdxx',
meta: {
title: '未读消息',
noCache: true
}
}]
}, {
path: '/xxzxydxx',
component: Layout,
redirect: '/ydxx/index',
meta: {
title: '已读消息'
},
children: [{
path: '/ydxx/index',
component: () => import('@/views/message/ydxx.vue'),
name: 'XxzxYdxx',
meta: {
title: '已读消息',
noCache: true
}
}]
2 years ago
}, {
path: '/xxzxydxx',
component: Layout,
redirect: '/mbxx/index',
meta: {
title: '模板消息'
},
children: [{
path: '/mbxx/index',
component: () => import('@/views/message/mbxx.vue'),
name: 'XxzxYdxx',
meta: {
title: '模板消息',
noCache: true
}
}]
2 years ago
}]
2 years ago
export default codemenu