12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- export default [
- {
- path: '/topic',
- name: '专题管理',
- icon: 'alert',
- authority: ['Pages.Topic'],
- routes: [
- {
- path: '/topic/html',
- name: 'Html专题',
- component: './FangCom/Topic/HtmlTopic/List',
- authority: ['Pages.HtmlTopic.Query']
- },
- {
- path: '/topic/custom',
- name: '落地专题',
- component: './FangCom/Topic/CustomTopic/List',
- authority: ['Pages.CustomTopic.Query']
- },
- {
- path: '/topic/custom/record/:id?',
- name: '落地专题访问记录',
- component: './FangCom/Topic/CustomTopicRecord/List',
- authority: ['Pages.CustomTopicRecord.Query'],
- hideInMenu: true
- },
- {
- path: '/topic/custom/edit/:uid?',
- name: '落地专题编辑',
- component: './FangCom/Topic/CustomTopic/Edit',
- authority: ['Pages.CustomTopicRecord.Create', 'Pages.CustomTopicRecord.Edit'],
- hideInMenu: true
- },
- {
- path: '/topic/wxlink',
- name: '小程序链接',
- component: './FangCom/Topic/WxLink/List',
- authority: ['Pages.WxLink.Query']
- },
- {
- path: '/topic/shortlink',
- name: '短链接生成',
- component: './FangCom/Topic/WxShortLink/List',
- authority: ['Pages.WxShortLink.Query']
- },
- {
- path: '/topic/hdAlbum',
- name: '高清图册',
- component: './FangCom/Topic/HDAlbum/List',
- authority: ['Pages.HDAlbum.Query']
- },
- {
- path: '/topic/hdAlbum/images/:hdAlbumId',
- name: '高清组图',
- component: './FangCom/Topic/HDImage/List',
- authority: ['Pages.HDImage.Query'],
- hideInMenu: true
- }
- ]
- }
- ]
|