app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "pages": [
  3. "index"
  4. ],
  5. "subpackages": [
  6. {
  7. "root": "common-page",
  8. "name": "common",
  9. "pages": [
  10. "pages/web-view/index",
  11. "pages/map-open/index"
  12. ]
  13. },
  14. {
  15. "root": "yuban",
  16. "name": "语伴",
  17. "pages": [
  18. "pages/index/index"
  19. ]
  20. }
  21. ],
  22. "preloadRule": {
  23. "yuban/pages/index/index": {
  24. "packages": [
  25. "common"
  26. ],
  27. "network": "all"
  28. }
  29. },
  30. "window": {
  31. "navigationStyle": "custom",
  32. "navigationBarTitleText": "",
  33. "navigationBarTextStyle": "black",
  34. "navigationBarBackgroundColor": "#f6f5fa",
  35. "backgroundColor": "#f6f5fa",
  36. "enablePullDownRefresh": false
  37. },
  38. "lazyCodeLoading": "requiredComponents",
  39. "permission": {
  40. "scope.userLocation": {
  41. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  42. }
  43. },
  44. "requiredPrivateInfos": [
  45. "getLocation"
  46. ],
  47. "usingComponents": {
  48. "nav": "plugin://fm-plugin/fm-nav",
  49. "get-phone-number-btn": "components/getPhone/index",
  50. "search": "/components/search/search",
  51. "payment": "/components/nova-payment/payment",
  52. "address": "/components/address/index",
  53. "upload": "/components/upload/index",
  54. "van-icon": "@vant/weapp/icon/index",
  55. "van-button": "@vant/weapp/button/index"
  56. },
  57. "sitemapLocation": "sitemap.json",
  58. "plugins": {
  59. "fm-plugin": {
  60. "version": "0.1.1",
  61. "provider": "wx56d559d35ae6e502",
  62. "export": "exportToPlugin.js",
  63. "genericsImplementation": {
  64. "fm-auth": {
  65. "get-phone-number-btn": "components/getPhone/index"
  66. }
  67. }
  68. }
  69. }
  70. }