1234567891011121314151617181920212223242526272829 |
- // 菜单
- 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 myBtn = [
- { title: '我的赛事', route: 'usermymatch' },
- { title: '账号设置', route: 'setting' }
- ]
- export const gender = [
- { label: '男', value: '男' },
- { label: '女', value: '女' },
- { label: '未知', value: '未知' },
- ]
|