sideBar.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // picker组件数据信息
  2. export default {
  3. //侧边栏对应列表
  4. getSideBarList: [{
  5. id: 8,
  6. type: 'image',
  7. url: '/static/signBoard@2x.png',
  8. name: '每日签到',
  9. page_type: "signBoard",
  10. },
  11. // {
  12. // id: 0,
  13. // type: 'image',
  14. // url: '/static/item-my.png',
  15. // name: "我的",
  16. // page_type: "my",
  17. // },
  18. {
  19. id: 1,
  20. type: 'image',
  21. url: '/static/recently-playing.png',
  22. name: "最近在玩",
  23. page_type: "recently",
  24. }, {
  25. id: 2,
  26. type: 'image',
  27. url: '/static/watch-game.png',
  28. name: '关注',
  29. page_type: "watchGame",
  30. },
  31. // {
  32. // id: 3,
  33. // type: 'image',
  34. // url: '/static/focus-video.png',
  35. // name: '关注视频',
  36. // page_type: "focusVideo",
  37. // },
  38. {
  39. id: 4,
  40. type: 'image',
  41. url: '/static/ranking.png',
  42. name: '排行榜',
  43. page_type: "ranking",
  44. },
  45. {
  46. id: 7,
  47. type: 'image',
  48. url: '/static/friend.png',
  49. name: '好友',
  50. page_type: "friend",
  51. },
  52. // {
  53. // id: 5,
  54. // type: 'image',
  55. // url: '/static/qrscan.png',
  56. // name: '扫一扫',
  57. // page_type: "QRCode",
  58. // },
  59. // {
  60. // id: 6,
  61. // type: 'image',
  62. // url: '/static/feedback@2x.png',
  63. // name: '意见反馈',
  64. // page_type: "feedback",
  65. // },
  66. {
  67. id: 7,
  68. type: 'image',
  69. url: '/static/settings@2x.png',
  70. name: '设置',
  71. page_type: "settings",
  72. }
  73. ]
  74. }