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.
82 lines
2.6 KiB
82 lines
2.6 KiB
3 years ago
|
import Layout from '@/views/layout/Layout'
|
||
|
|
||
|
const commodityManagement = {
|
||
|
path: '/news',
|
||
|
component: Layout,
|
||
|
meta: {title: '新闻中心', icon: 'dingdan', noCache: true, affix: false},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/news1',
|
||
|
code: '0201',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '集团新闻',
|
||
|
meta: {title: '集团新闻', noCache: false, affix: false}
|
||
|
},
|
||
|
{
|
||
|
path: '/news2',
|
||
|
code: '0202',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '省公司新闻',
|
||
|
meta: {title: '省公司新闻', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news3',
|
||
|
code: '0203',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '公司新闻',
|
||
|
meta: {title: '公司新闻', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news4',
|
||
|
code: '0204',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '图片新闻',
|
||
|
meta: {title: '图片新闻', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news5',
|
||
|
code: '0205',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '热点专题',
|
||
|
meta: {title: '热点专题', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news6',
|
||
|
code: '0206',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '媒体关注',
|
||
|
meta: {title: '媒体关注', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news7',
|
||
|
code: '0207',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '视频新闻',
|
||
|
meta: {title: '视频新闻', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news8',
|
||
|
code: '0208',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '专题片',
|
||
|
meta: {title: '专题片', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news9',
|
||
|
code: '0209',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '企业画册',
|
||
|
meta: {title: '企业画册', noCache: false, affix: false},
|
||
|
},
|
||
|
{
|
||
|
path: '/news10',
|
||
|
code: '0210',
|
||
|
component: () => import('@/views/lists/index'),
|
||
|
name: '现场采风',
|
||
|
meta: {title: '现场风采', noCache: false, affix: false},
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
export default commodityManagement
|