dict.js 581 B

123456789101112
  1. // 菜单
  2. export const system = [
  3. { title: '羽校', normal: '/image/tabs/school.png', active: '/image/tabs/school_1.png', route: 'pages/school/index', type: '0' },
  4. { title: '俱乐部', normal: '/image/tabs/club.png', active: '/image/tabs/club_1.png', route: 'pages/club/index', type: '0' },
  5. { title: '比赛管理', normal: '/image/tabs/match.png', active: '/image/tabs/match_1.png', route: 'pages/match/index', type: '0' },
  6. ]
  7. // 性别
  8. export const gender = [
  9. { label: '男', value: '0' },
  10. { label: '女', value: '1' },
  11. { label: '未知', value: '2' },
  12. ]