pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "慕尼黑上海电子生产设备展"
  7. }
  8. },
  9. { "path": "pages/news/index" },
  10. { "path": "pages/activity/index" },
  11. { "path": "pages/activity/detail" },
  12. { "path": "pages/activity/guest" },
  13. // { "path": "pages/exhibitor/index" },
  14. { "path": "pages/exhibitor/exhibit" },
  15. { "path": "pages/exhibitor/exhibit-detail" },
  16. { "path": "pages/exhibitor/detail" },
  17. { "path": "pages/user/index" },
  18. { "path": "pages/user/login" },
  19. { "path": "pages/user/setting" },
  20. { "path": "pages/user/info" },
  21. { "path": "pages/user/info-edit" },
  22. { "path": "pages/user/like" },
  23. { "path": "pages/user/favorites" },
  24. { "path": "pages/user/vote" },
  25. // 组件页面
  26. { "path": "pages/index/search" },
  27. // WEBVIEW
  28. { "path": "pages/index/webview", "style": { "navigationStyle": "default", "navigationBarTitleText": "加载中...", "navigationBarBackgroundColor": "#332968" }}
  29. ],
  30. "globalStyle": {
  31. "navigationStyle": "custom",
  32. "navigationBarTextStyle": "white",
  33. "navigationBarTitleText": "uni-app",
  34. "navigationBarBackgroundColor": "#F8F8F8",
  35. "backgroundColor": "#F8F8F8",
  36. "usingComponents": {
  37. "van-icon": "/wxcomponents/vant/icon/index",
  38. "van-empty": "/wxcomponents/vant/empty/index",
  39. "van-button": "/wxcomponents/vant/button/index",
  40. "van-dialog": "/wxcomponents/vant/dialog/index"
  41. }
  42. },
  43. "uniIdRouter": {}
  44. }