pages.json 977 B

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