pages.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/rechargeRecord/rechargeRecord",
  26. "style" : {
  27. "navigationBarTitleText": "充值记录"
  28. }
  29. },
  30. {
  31. "path" : "pages/selfInfo/payList/payList",
  32. "style" : {
  33. "navigationBarTitleText": "套餐"
  34. }
  35. }
  36. ],
  37. "globalStyle": {
  38. "navigationBarTextStyle": "black",
  39. "navigationBarTitleText": "mini_rabot",
  40. "navigationBarBackgroundColor": "#F8F8F8",
  41. "backgroundColor": "#F8F8F8"
  42. }
  43. }