pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. "path" : "pages/share/sharePage",
  43. "style": {
  44. "navigationBarTitleText": "邀好友 赚查询次数"
  45. }
  46. }
  47. ],
  48. "globalStyle": {
  49. "navigationBarTextStyle": "black",
  50. "navigationBarTitleText": "mini_rabot",
  51. "navigationBarBackgroundColor": "#F8F8F8",
  52. "backgroundColor": "#F8F8F8"
  53. }
  54. }