1234567891011121314151617181920212223242526 |
- // 菜单
- 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: 'uploadimg', type: '0|1|2' },
- { title: '用户管理', icon: 'icon-shenhe', route: 'user', type: '0' },
- { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'matchadmin', type: '0' },
- { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'matchteam', type: '1' },
- { title: '审核队员', icon: 'icon-shenhe', route: 'exammembers', type: '1' },
- { title: '解散团队', icon: 'icon-ren_jiesantuandui_line', route: 'teamdismissteam', type: '1' },
- { title: '团队申请', icon: 'icon-ren_jiesantuandui_line', route: 'teamapply', type: '2' },
- { title: '修改密码', icon: 'icon-xiugaimima', route: 'updatepd', type: '0|1|2' },
- { title: '退出登录', icon: 'icon-tuichudenglu', route: '', type: '0|1|2', method: 'signout' },
- ]
- // 性别
- export const gender = ['男', '女', '未知'];
- // 比赛管理-赛制
- export const format = [{ label: '1', value: '单打' }, { label: '2', value: '双打' }, { label: '3', value: '团体' }]
- // 比赛管理-比赛状态
- export const match_status = [{ label: '0', value: '未开始' }, { label: '1', value: '报名中' }, { label: '2', value: '待比赛' }, { label: '3', value: '进行中' }, { label: '4', value: '已结束' }]
|