dict.js 1.5 KB

123456789101112131415161718192021
  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-shenhe', route: 'exammembers', type: '1' },
  15. { title: '解散团队', icon: 'icon-ren_jiesantuandui_line', route: 'dismissteam', type: '1' },
  16. { title: '比赛管理', icon: 'icon-bisaiguanli', route: 'matchteam', type: '1' },
  17. { title: '修改密码', icon: 'icon-xiugaimima', route: 'updatepd', type: '0|1|2' },
  18. { title: '退出登录', icon: 'icon-tuichudenglu', route: '', type: '0|1|2', method: 'signout' },
  19. ]
  20. // 性别
  21. export const gender = ['男', '女', '未知']