1234567891011121314151617181920 |
- // 菜单
- export const system = [
- { title: '首页', normal: '/image/shouye.png', active: '/image/shouye-01.png', route: 'pages/home/index', type: '0|1|2' },
- { title: '查询比赛', normal: '/image/saishi.png', active: '/image/saishi-01.png', route: 'pages/search/index', type: '0|1|2' },
- { title: '比赛管理', normal: '/image/miaobiao.png', active: '/image/miaobiao-01.png', route: 'pages/administration/index', type: '0' },
- { title: '查询团队', normal: '/image/duiwu.png', active: '/image/duiwu-01.png', route: 'pages/team/index', type: '0|1|2' },
- { title: '我的', normal: '/image/wodexiao.png', active: '/image/wodexiao-01.png', route: 'pages/me/index', type: '0|1|2' },
- ]
- // 我的页面-我的服务
- export const btn = [
- { title: '已上传图片', icon: 'icon-shangchuanzhaopian', route: 'pages/photo/index', type: '0|1|2' },
- { title: '修改密码', icon: 'icon-xiugaimima', route: 'pages/password/index', type: '0|1|2' },
- { title: '退出登录', icon: 'icon-tuichudenglu', route: '', type: '0|1|2', method: 'signout' },
- { title: '用户管理', icon: 'icon-shenhe', route: 'pages/user/index', type: '0' },
- { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'pages/meMatch/detail', type: '0' },
- { title: '审核队员', icon: 'icon-shenhe', route: 'pages/auditTeam/index', type: '1' },
- { title: '解散团队', icon: 'icon-ren_jiesantuandui_line', route: 'pages/dissolution/detail', type: '1' },
- { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'pages/meMatch/index', type: '1' },
- ]
|