pages.json 738 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "水贝商城",
  7. "navigationStyle": "custom"
  8. }
  9. },{
  10. "path": "pages/article_details/index",
  11. "style": {
  12. "navigationBarTitleText": "文章详情",
  13. "navigationStyle": "custom"
  14. }
  15. },{
  16. "path": "pages/goods_details/index",
  17. "style": {
  18. "navigationStyle": "custom",
  19. "navigationBarTextStyle": "white"
  20. }
  21. }
  22. ],
  23. "globalStyle": {
  24. "navigationBarTextStyle": "black",
  25. "navigationBarTitleText": "uni-app",
  26. "navigationBarBackgroundColor": "#F8F8F8",
  27. "backgroundColor": "#F8F8F8"
  28. },
  29. "uniIdRouter": {}
  30. }