No Description

app.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/sphRank/index",
  5. "pages/cyRank/index",
  6. "pages/mine/mine"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#2562FF",
  11. "navigationBarTitleText": "视频号 - 问星数据",
  12. "navigationBarTextStyle": "white",
  13. "backgroundColor": "#101426"
  14. },
  15. "sitemapLocation": "sitemap.json",
  16. "tabBar": {
  17. "color": "#000",
  18. "selectedColor": "#2562FF",
  19. "backgroundColor": "#fff",
  20. "list": [
  21. {
  22. "pagePath": "pages/index/index",
  23. "text": "首页",
  24. "iconPath": "/assets/tabBar/home.png",
  25. "selectedIconPath": "/assets/tabBar/home_yes.png"
  26. },
  27. {
  28. "pagePath": "pages/sphRank/index",
  29. "text": "视频号榜单",
  30. "iconPath": "/assets/tabBar/sphRank.png",
  31. "selectedIconPath": "/assets/tabBar/sphRank_yes.png"
  32. },
  33. {
  34. "pagePath": "pages/cyRank/index",
  35. "text": "创意榜单",
  36. "iconPath": "/assets/tabBar/cyRank.png",
  37. "selectedIconPath": "/assets/tabBar/cyRank_yes.png"
  38. },
  39. {
  40. "pagePath": "pages/mine/mine",
  41. "text": "我的",
  42. "iconPath": "/assets/tabBar/wode.png",
  43. "selectedIconPath": "/assets/tabBar/wode_yes.png"
  44. }
  45. ]
  46. }
  47. }