pages.json 884 B

123456789101112131415161718192021222324252627282930313233343536
  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. ,{
  11. "path" : "pages/chat/chat",
  12. "style" : {}
  13. }
  14. ,{
  15. "path" : "pages/chat/chatDetail/chatDetail",
  16. "style" : {}
  17. }
  18. ,{
  19. "path" : "pages/selfInfo/selfInfo",
  20. "style" : {
  21. "navigationBarTitleText": "我的"
  22. }
  23. }
  24. ,{
  25. "path" : "pages/selfInfo/selfDetail/selfDetail",
  26. "style" : {}
  27. }
  28. ],
  29. "globalStyle": {
  30. "navigationBarTextStyle": "black",
  31. "navigationBarTitleText": "mini_rabot",
  32. "navigationBarBackgroundColor": "#F8F8F8",
  33. "backgroundColor": "#F8F8F8"
  34. }
  35. }