pages.json 792 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/chat/chat",
  11. "style" : {}
  12. }
  13. ,{
  14. "path" : "pages/chat/chatDetail/chatDetail",
  15. "style" : {}
  16. }
  17. ,{
  18. "path" : "pages/selfInfo/selfInfo",
  19. "style" : {}
  20. }
  21. ,{
  22. "path" : "pages/selfInfo/selfDetail/selfDetail",
  23. "style" : {}
  24. }
  25. ],
  26. "globalStyle": {
  27. "navigationBarTextStyle": "black",
  28. "navigationBarTitleText": "mini_rabot",
  29. "navigationBarBackgroundColor": "#F8F8F8",
  30. "backgroundColor": "#F8F8F8"
  31. }
  32. }