app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. },
  26. "window": {
  27. "backgroundTextStyle": "light",
  28. "navigationBarBackgroundColor": "#fff",
  29. "navigationBarTitleText": "小程序模板",
  30. "navigationBarTextStyle": "black",
  31. "navigationStyle": "custom"
  32. },
  33. "style": "v2",
  34. "requiredBackgroundModes": [
  35. "location"
  36. ],
  37. "sitemapLocation": "sitemap.json",
  38. "permission": {
  39. "scope.userLocation": {
  40. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  41. }
  42. }
  43. }