app.json 1.5 KB

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