pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle":"custom",
  7. "navigationBarTitleText": "",
  8. "enablePullDownRefresh": true,
  9. "app-plus": {
  10. "titleNView": false
  11. }
  12. }
  13. },
  14. {
  15. "path" : "pages/login/login",
  16. "style" : {
  17. "navigationStyle":"custom",
  18. "navigationBarTitleText": "",
  19. "enablePullDownRefresh": false,
  20. "app-plus": {
  21. "titleNView": false
  22. }
  23. }
  24. },
  25. {
  26. "path" : "pages/chat/chat",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "消息",
  30. "enablePullDownRefresh": false,
  31. "app-plus": {
  32. "autoBackButton": false,
  33. "titleNView": true
  34. }
  35. }
  36. },
  37. {
  38. "path" : "pages/personalCenter/personalCenter",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "我的",
  42. "enablePullDownRefresh": false,
  43. "app-plus": {
  44. "titleNView": false,
  45. "autoBackButton": false
  46. }
  47. }
  48. },
  49. {
  50. "path" : "pages/chatDetail/chatDetail",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. {
  58. "path" : "pages/register/register",
  59. "style" : {
  60. "navigationStyle":"custom",
  61. "navigationBarTitleText": "",
  62. "enablePullDownRefresh": false,
  63. "app-plus": {
  64. "titleNView": false
  65. }
  66. }
  67. },
  68. {
  69. "path" : "pages/forget/forget",
  70. "style" : {
  71. "navigationStyle":"custom",
  72. "navigationBarTitleText": "",
  73. "enablePullDownRefresh": false,
  74. "app-plus": {
  75. "titleNView": false
  76. }
  77. }
  78. }
  79. ],
  80. "globalStyle": {
  81. "navigationBarTextStyle": "black",
  82. "navigationBarTitleText": "uni-app",
  83. "navigationBarBackgroundColor": "#F8F8F8",
  84. "backgroundColor": "#F7F7F7",
  85. "navigationBarTitleFontWeight": "bold"
  86. },
  87. "tabBar": {
  88. "list": [
  89. {
  90. "pagePath": "pages/index/index",
  91. "text": "主页",
  92. "iconPath": "static/tabbar-icon/home.png",
  93. "selectedIconPath": "static/tabbar-icon/home-fill.png"
  94. },
  95. {
  96. "pagePath": "pages/chat/chat",
  97. "text": "消息",
  98. "iconPath": "static/tabbar-icon/comment.png",
  99. "selectedIconPath": "static/tabbar-icon/comment-filling.png"
  100. },
  101. {
  102. "pagePath": "pages/personalCenter/personalCenter",
  103. "text": "我的",
  104. "iconPath": "static/tabbar-icon/user-line.png",
  105. "selectedIconPath": "static/tabbar-icon/user-s.png"
  106. }
  107. ]
  108. },
  109. "uniIdRouter": {}
  110. }