dict.js 2.0 KB

1234567891011121314151617181920212223242526
  1. // 菜单
  2. export const system = [
  3. { title: '首页', normal: '/image/shouye.png', active: '/image/shouye-01.png', route: 'pages/home/index', type: '0|1|2' },
  4. { title: '查询比赛', normal: '/image/saishi.png', active: '/image/saishi-01.png', route: 'pages/search/index', type: '0|1|2' },
  5. { title: '比赛管理', normal: '/image/miaobiao.png', active: '/image/miaobiao-01.png', route: 'pages/administration/index', type: '0' },
  6. { title: '查询团队', normal: '/image/duiwu.png', active: '/image/duiwu-01.png', route: 'pages/team/index', type: '0|1|2' },
  7. { title: '我的', normal: '/image/wodexiao.png', active: '/image/wodexiao-01.png', route: 'pages/me/index', type: '0|1|2' },
  8. ]
  9. // 我的页面-我的服务
  10. export const btn = [
  11. { title: '已上传图片', icon: 'icon-shangchuanzhaopian', route: 'uploadimg', type: '0|1|2' },
  12. { title: '用户管理', icon: 'icon-shenhe', route: 'user', type: '0' },
  13. { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'matchadmin', type: '0' },
  14. { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'matchteam', type: '1' },
  15. { title: '审核队员', icon: 'icon-shenhe', route: 'exammembers', type: '1' },
  16. { title: '解散团队', icon: 'icon-ren_jiesantuandui_line', route: 'teamdismissteam', type: '1' },
  17. { title: '团队申请', icon: 'icon-ren_jiesantuandui_line', route: 'teamapply', type: '2' },
  18. { title: '修改密码', icon: 'icon-xiugaimima', route: 'updatepd', type: '0|1|2' },
  19. { title: '退出登录', icon: 'icon-tuichudenglu', route: '', type: '0|1|2', method: 'signout' },
  20. ]
  21. // 性别
  22. export const gender = ['男', '女', '未知'];
  23. // 比赛管理-赛制
  24. export const format = [{ label: '1', value: '单打' }, { label: '2', value: '双打' }, { label: '3', value: '团体' }]
  25. // 比赛管理-比赛状态
  26. export const match_status = [{ label: '0', value: '未开始' }, { label: '1', value: '报名中' }, { label: '2', value: '待比赛' }, { label: '3', value: '进行中' }, { label: '4', value: '已结束' }]