pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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/auth/index",
  11. "style": {
  12. "navigationBarTitleText": "授权登录"
  13. }
  14. },
  15. {
  16. "path" : "pages/chat/chat",
  17. "style" : {}
  18. }
  19. ,{
  20. "path" : "pages/chat/chatDetail/chatDetail",
  21. "style" : {}
  22. }
  23. ,{
  24. "path" : "pages/selfInfo/selfInfo",
  25. "style" : {
  26. "navigationBarTitleText": "个人中心"
  27. }
  28. }
  29. ,{
  30. "path" : "pages/selfInfo/rechargeRecord/rechargeRecord",
  31. "style" : {
  32. "navigationBarTitleText": "充值记录"
  33. }
  34. },
  35. {
  36. "path" : "pages/selfInfo/payList/payList",
  37. "style" : {
  38. "navigationBarTitleText": "套餐"
  39. }
  40. }
  41. ],
  42. "globalStyle": {
  43. "navigationBarTextStyle": "black",
  44. "navigationBarTitleText": "mini_rabot",
  45. "navigationBarBackgroundColor": "#F8F8F8",
  46. "backgroundColor": "#F8F8F8"
  47. }
  48. }