app.json 1.0 KB

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