pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. "navigationBarBackgroundColor": "#8dccff",
  44. "app-plus": {
  45. "autoBackButton": false,
  46. "titleNView": true
  47. }
  48. }
  49. },
  50. {
  51. "path" : "pages/chatDetail/chatDetail",
  52. "style" :
  53. {
  54. "navigationBarTitleText" : "",
  55. "enablePullDownRefresh": false
  56. }
  57. },
  58. {
  59. "path" : "pages/register/register",
  60. "style" : {
  61. "navigationStyle":"custom",
  62. "navigationBarTitleText": "",
  63. "enablePullDownRefresh": false,
  64. "app-plus": {
  65. "titleNView": false
  66. }
  67. }
  68. },
  69. {
  70. "path" : "pages/forget/forget",
  71. "style" : {
  72. "navigationStyle":"custom",
  73. "navigationBarTitleText": "",
  74. "enablePullDownRefresh": false,
  75. "app-plus": {
  76. "titleNView": false
  77. }
  78. }
  79. }
  80. ],
  81. "globalStyle": {
  82. "navigationBarTextStyle": "black",
  83. "navigationBarTitleText": "uni-app",
  84. "navigationBarBackgroundColor": "#F8F8F8",
  85. "backgroundColor": "#F7F7F7",
  86. "navigationBarTitleFontWeight": "bold"
  87. },
  88. "tabBar": {
  89. "list": [
  90. {
  91. "pagePath": "pages/index/index",
  92. "text": "主页",
  93. "iconPath": "static/tabbar-icon/home.png",
  94. "selectedIconPath": "static/tabbar-icon/home-fill.png"
  95. },
  96. {
  97. "pagePath": "pages/chat/chat",
  98. "text": "消息",
  99. "iconPath": "static/tabbar-icon/comment.png",
  100. "selectedIconPath": "static/tabbar-icon/comment-filling.png"
  101. },
  102. {
  103. "pagePath": "pages/personalCenter/personalCenter",
  104. "text": "我的",
  105. "iconPath": "static/tabbar-icon/user-line.png",
  106. "selectedIconPath": "static/tabbar-icon/user-s.png"
  107. }
  108. ]
  109. },
  110. "uniIdRouter": {}
  111. }