app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/login/login",
  5. "pages/mine/mine",
  6. "pages/leavingAMessage/leavingAMessage",
  7. "pages/business/business",
  8. "pages/guide/guide",
  9. "pages/collection/collection",
  10. "pages/news/news"
  11. ],
  12. "permission": {
  13. "scope.userLocation": {
  14. "desc": "你的位置信息将用于为了确认您所选的出发地、目的地地理位置"
  15. }
  16. },
  17. "requiredPrivateInfos": [
  18. "chooseLocation"
  19. ],
  20. "window": {
  21. "backgroundTextStyle": "light",
  22. "navigationBarBackgroundColor": "#CCCCCC",
  23. "navigationBarTitleText": "学习",
  24. "navigationBarTextStyle": "black"
  25. },
  26. "sitemapLocation": "sitemap.json",
  27. "useExtendedLib": {
  28. "weui": true
  29. },
  30. "tabBar": {
  31. "color": "#999999",
  32. "selectedColor": "#333333",
  33. "backgroundColor": "#FFFFFF",
  34. "list": [
  35. {
  36. "pagePath": "pages/home/home",
  37. "text": "首页",
  38. "iconPath": "image/tabBar/home_0@2x.png",
  39. "selectedIconPath": "image/tabBar/home_1@2x.png"
  40. },
  41. {
  42. "pagePath": "pages/mine/mine",
  43. "text": "我的",
  44. "iconPath": "image/tabBar/mine_0@2x.png",
  45. "selectedIconPath": "image/tabBar/mine_1@2x.png"
  46. }
  47. ]
  48. }
  49. }