app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "pages/storeIcon/storeIcon"
  15. ],
  16. "window": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "便宜坊奔跑联盟",
  19. "navigationBarBackgroundColor": "#ffffff"
  20. },
  21. "style": "v2",
  22. "componentFramework": "glass-easel",
  23. "sitemapLocation": "sitemap.json",
  24. "lazyCodeLoading": "requiredComponents",
  25. "tabBar": {
  26. "custom": true,
  27. "list": [
  28. {
  29. "pagePath": "pages/index/index",
  30. "text": "首页"
  31. },
  32. {
  33. "pagePath": "pages/store/store",
  34. "text": "门店"
  35. },
  36. {
  37. "pagePath": "pages/mine/mine",
  38. "text": "我的"
  39. }
  40. ]
  41. },
  42. "permission": {
  43. "scope.userLocation": {
  44. "desc": "你的位置信息将用于推荐附近的门店"
  45. },
  46. "scope.userFuzzyLocation": {
  47. "desc": "你的位置信息将用于推荐附近的门店"
  48. }
  49. },
  50. "requiredPrivateInfos": [
  51. "getLocation"
  52. ]
  53. }