dict.js 1.2 KB

1234567891011121314151617181920212223242526272829
  1. // 菜单
  2. export const system = [
  3. { title: '首页', normal: '/image/tabs/home.png', active: '/image/tabs/home_1.png', route: 'pages/home/index', type: '0' },
  4. { title: '资讯', normal: '/image/tabs/news.png', active: '/image/tabs/news_1.png', route: 'pages/news/index', type: '0' },
  5. { title: '话题', normal: '/image/tabs/topic.png', active: '/image/tabs/topic_1.png', route: 'pages/topic/index', type: '0' },
  6. { title: '我的', normal: '/image/tabs/my.png', active: '/image/tabs/my_1.png', route: 'pages/my/index', type: '0' },
  7. ]
  8. // 比赛状态
  9. export const match_status = [
  10. { label: '', value: '全部' },
  11. { label: '0', value: '报名中' },
  12. { label: '1', value: '报名截止' },
  13. { label: '2', value: '报名结束' },
  14. { label: '3', value: '发布秩序册' },
  15. { label: '4', value: '比赛中' },
  16. { label: '5', value: '比赛结束' },
  17. ]
  18. // 我的页面,功能按钮
  19. export const myBtn = [
  20. { title: '我的赛事', route: 'usermymatch' },
  21. { title: '账号设置', route: 'setting' }
  22. ]
  23. export const gender = [
  24. { label: '男', value: '男' },
  25. { label: '女', value: '女' },
  26. { label: '未知', value: '未知' },
  27. ]