app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index",
  5. "pages/register/index",
  6. "pages/home/index",
  7. "pages/news/index",
  8. "pages/topic/index",
  9. "pages/my/index",
  10. "pages/my/userInfo",
  11. "pages/usermymatch/index",
  12. "pages/test/index"
  13. ],
  14. "usingComponents": {
  15. "van-sidebar": "@vant/weapp/sidebar/index",
  16. "van-sidebar-item": "@vant/weapp/sidebar-item/index",
  17. "van-search": "@vant/weapp/search/index",
  18. "van-button": "@vant/weapp/button/index",
  19. "van-row": "@vant/weapp/row/index",
  20. "van-col": "@vant/weapp/col/index",
  21. "van-dialog": "@vant/weapp/dialog/index",
  22. "van-tab": "@vant/weapp/tab/index",
  23. "van-tabs": "@vant/weapp/tabs/index",
  24. "van-icon": "@vant/weapp/icon/index",
  25. "van-nav-bar": "@vant/weapp/nav-bar/index",
  26. "van-tabbar": "@vant/weapp/tabbar/index",
  27. "van-tabbar-item": "@vant/weapp/tabbar-item/index",
  28. "van-uploader": "@vant/weapp/uploader/index",
  29. "van-popup": "@vant/weapp/popup/index",
  30. "van-picker": "@vant/weapp/picker/index"
  31. },
  32. "window": {
  33. "backgroundTextStyle": "light",
  34. "navigationBarBackgroundColor": "#fff",
  35. "navigationBarTitleText": "小程序模板",
  36. "navigationBarTextStyle": "black",
  37. "navigationStyle": "custom"
  38. },
  39. "style": "v2",
  40. "requiredBackgroundModes": [
  41. "location"
  42. ],
  43. "sitemapLocation": "sitemap.json",
  44. "permission": {
  45. "scope.userLocation": {
  46. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  47. }
  48. }
  49. }