app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/store/store",
  5. "pages/mine/mine",
  6. "pages/register/register",
  7. "pages/storeDetail/storeDetail",
  8. "pages/rules/rules",
  9. "pages/setting/setting",
  10. "pages/registrationRecords/registrationRecords",
  11. "pages/coupon/coupon",
  12. "pages/couponDetail/couponDetail",
  13. "pages/competitionRecords/competitionRecords"
  14. ],
  15. "window": {
  16. "navigationBarTextStyle": "black",
  17. "navigationBarTitleText": "便宜坊奔跑联盟",
  18. "navigationBarBackgroundColor": "#ffffff"
  19. },
  20. "style": "v2",
  21. "componentFramework": "glass-easel",
  22. "sitemapLocation": "sitemap.json",
  23. "lazyCodeLoading": "requiredComponents",
  24. "tabBar": {
  25. "custom": true,
  26. "list": [
  27. {
  28. "pagePath": "pages/index/index",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/store/store",
  33. "text": "门店"
  34. },
  35. {
  36. "pagePath": "pages/mine/mine",
  37. "text": "我的"
  38. }
  39. ]
  40. },
  41. "permission": {
  42. "scope.userLocation": {
  43. "desc": "你的位置信息将用于推荐附近的门店"
  44. },
  45. "scope.userFuzzyLocation": {
  46. "desc": "你的位置信息将用于推荐附近的门店"
  47. }
  48. },
  49. "requiredPrivateInfos": [
  50. "getLocation"
  51. ]
  52. }