pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "uni-app",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F7F7F7",
  63. "navigationBarTitleFontWeight": "bold"
  64. },
  65. "tabBar": {
  66. "list": [
  67. {
  68. "pagePath": "pages/index/index",
  69. "text": "主页",
  70. "iconPath": "static/tabbar-icon/home.png",
  71. "selectedIconPath": "static/tabbar-icon/home-fill.png"
  72. },
  73. {
  74. "pagePath": "pages/chat/chat",
  75. "text": "消息",
  76. "iconPath": "static/tabbar-icon/comment.png",
  77. "selectedIconPath": "static/tabbar-icon/comment-filling.png"
  78. },
  79. {
  80. "pagePath": "pages/personalCenter/personalCenter",
  81. "text": "我的",
  82. "iconPath": "static/tabbar-icon/user-line.png",
  83. "selectedIconPath": "static/tabbar-icon/user-s.png"
  84. }
  85. ]
  86. },
  87. "uniIdRouter": {}
  88. }