app.json 1.4 KB

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