app.json 1.1 KB

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