123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // picker组件数据信息
- export default {
- //侧边栏对应列表
- getSideBarList: [{
- id: 8,
- type: 'image',
- url: '/static/signBoard@2x.png',
- name: '每日签到',
- page_type: "signBoard",
- },
- // {
- // id: 0,
- // type: 'image',
- // url: '/static/item-my.png',
- // name: "我的",
- // page_type: "my",
- // },
- //上线华为隐藏两个侧滑栏
- // {
- // id: 1,
- // type: 'image',
- // url: '/static/recently-playing.png',
- // name: "最近在玩",
- // page_type: "recently",
- // }, {
- // id: 2,
- // type: 'image',
- // url: '/static/watch-game.png',
- // name: '关注',
- // page_type: "watchGame",
- // },
- // {
- // id: 3,
- // type: 'image',
- // url: '/static/focus-video.png',
- // name: '关注视频',
- // page_type: "focusVideo",
- // },
- {
- id: 4,
- type: 'image',
- url: '/static/ranking.png',
- name: '排行榜',
- page_type: "ranking",
- },
- {
- id: 7,
- type: 'image',
- url: '/static/friend.png',
- name: '好友',
- page_type: "friend",
- },
- // {
- // id: 5,
- // type: 'image',
- // url: '/static/qrscan.png',
- // name: '扫一扫',
- // page_type: "QRCode",
- // },
- // {
- // id: 6,
- // type: 'image',
- // url: '/static/feedback@2x.png',
- // name: '意见反馈',
- // page_type: "feedback",
- // },
- {
- id: 7,
- type: 'image',
- url: '/static/settings@2x.png',
- name: '设置',
- page_type: "settings",
- }
- ]
- }
|