123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- export default [
- {
- path: '/user',
- layout: false,
- routes: [
- // 登录页面
- {
- name: 'login',
- path: '/user/login',
- component: './user/Login',
- },
- {
- component: './404',
- },
- ],
- },
- // 首页
- {
- path: '/welcome',
- name: '首页',
- icon: 'smile',
- component: './Welcome',
- },
- // 内容发布
- {
- name: '内容发布',
- icon: 'crown',
- path: '/cms',
- routes: [
- // 栏目管理
- {
- path: '/cms/columnList',
- name: '栏目管理',
- icon: 'file',
- component: './cms/ColumnList',
- },
- // 文章管理
- {
- path: '/cms/articleManagement',
- name: '文章管理',
- icon: 'file',
- component: './cms/ArticleManagement',
- },
- ],
- },
- // 红外管理
- {
- path: '/infrared',
- name: '红外管理',
- icon: 'Appstore',
- routes: [
- // 类型管理
- {
- path: '/infrared/type',
- name: '版本管理',
- icon: 'Appstore',
- component: './Infrared',
- },
- // 品牌管理
- {
- path: '/infrared/brand',
- name: '品牌管理',
- icon: 'Appstore',
- component: './Infrared/brand',
- },
- // 码库管理
- {
- path: '/infrared/remote',
- name: '码库管理',
- icon: 'Appstore',
- component: './Infrared/remote',
- },
- ],
- },
- // 版本管理
- {
- path: '/editionManagement',
- name: '版本管理',
- icon: 'Appstore',
- component: './EditionManagement',
- },
- // 用户管理
- {
- path: '/UserManagement',
- name: '用户管理',
- icon: 'team',
- component: './setting/UserManagement',
- },
- // 家列表管理
- {
- path: '/homeList',
- name: '家列表管理',
- icon: 'file',
- component: './home',
- },
- // 菜单管理
- {
- path: '/MenuManagement',
- name: '菜单管理',
- icon: 'Appstore',
- component: './MenuManagement',
- },
- // 角色管理
- {
- path: '/RoleManagement',
- name: '角色管理',
- icon: 'Appstore',
- component: './RoleManagement',
- },
- // 报备管理
- {
- path: '/ReportingManagement',
- name: '报备管理',
- icon: 'Appstore',
- component: './ReportingManagement',
- },
- {
- path: '/ParameterConfiguration',
- name: '参数配置',
- icon: 'Appstore',
- component: './ParameterConfiguration',
- },
- // {
- // path: '/LogManagement',
- // name: '日志管理',
- // icon: 'Appstore',
- // component: './LogManagement',
- // },
- {
- path: '/ProductionDataManagement',
- name: '产测数据管理',
- icon: 'Appstore',
- component: './ProductionDataManagement',
- },
- {
- path: '/DataBoard',
- name: '可视化视窗',
- icon: 'file',
- layout: false,
- component: './DataBoard',
- },
- // 故障管理
- {
- path: '/deviceFaults',
- name: '版本管理',
- icon: 'Appstore',
- component: './DeviceFaults',
- },
- // 房间列表
- {
- path: '/roomList',
- component: './Home/Room',
- },
- {
- path: '/',
- redirect: '/welcome',
- },
- {
- component: './404',
- },
- ];
|