123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // 菜单
- export const system = [
- { title: '首页', normal: '/image/tabs/home.png', active: '/image/tabs/home_1.png', route: 'pages/home/index', type: '0' },
- { title: '资讯', normal: '/image/tabs/news.png', active: '/image/tabs/news_1.png', route: 'pages/news/index', type: '0' },
- { title: '话题', normal: '/image/tabs/topic.png', active: '/image/tabs/topic_1.png', route: 'pages/topic/index', type: '0' },
- { title: '我的', normal: '/image/tabs/my.png', active: '/image/tabs/my_1.png', route: 'pages/my/index', type: '0' },
- ]
- // 比赛状态
- export const match_status = [
- { label: '', value: '全部' },
- { label: '0', value: '报名中' },
- { label: '1', value: '报名截止' },
- { label: '2', value: '报名结束' },
- { label: '3', value: '发布秩序册' },
- { label: '4', value: '比赛中' },
- { label: '5', value: '比赛结束' },
- ]
- // 赛事类别
- export const matchType = [
- { label: '团体赛', value: '团体赛' },
- { label: '单项赛', value: '单项赛' },
- ]
- // 我的页面,功能按钮
- // -1:管理员,0:普通用户,1:裁判用户
- export const myBtn = [
- { title: '我的赛事', route: 'usermymatch', type: '0' },
- { title: '我的报名', route: 'usermysign', type: '0' },
- { title: '组队信息', route: 'usermyteam', type: '0' },
- { title: '我的订单', route: 'usermyorder', type: '0' },
- { title: '用户管理', route: 'user', type: '-1' },
- { title: '赛事管理', route: 'match', type: '-1' },
- { title: '订单管理', route: 'order', type: '-1' },
- { title: '账号设置', route: 'setting', type: '-1|0' }
- ]
- export const gender = [
- { label: '男', value: '男' },
- { label: '女', value: '女' },
- { label: '未知', value: '未知' },
- ]
- export const match_project = [
- { label: '单打', value: '单打' },
- { label: '双打', value: '双打' },
- ]
- export const examine_status = [
- { label: '待审核', value: '0' },
- { label: '审核通过', value: '1' },
- { label: '审核拒绝', value: '-1' }
- ]
|