app.json 1.2 KB

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