pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "globalStyle": {
  51. "navigationBarTextStyle": "black",
  52. "navigationBarTitleText": "uni-app",
  53. "navigationBarBackgroundColor": "#F8F8F8",
  54. "backgroundColor": "#F7F7F7"
  55. },
  56. "tabBar": {
  57. "list": [
  58. {
  59. "pagePath": "pages/index/index",
  60. "text": "主页",
  61. "iconPath": "static/tabbar-icon/home.png",
  62. "selectedIconPath": "static/tabbar-icon/home-fill.png"
  63. },
  64. {
  65. "pagePath": "pages/chat/chat",
  66. "text": "消息",
  67. "iconPath": "static/tabbar-icon/comment.png",
  68. "selectedIconPath": "static/tabbar-icon/comment-filling.png"
  69. },
  70. {
  71. "pagePath": "pages/personalCenter/personalCenter",
  72. "text": "我的",
  73. "iconPath": "static/tabbar-icon/user-line.png",
  74. "selectedIconPath": "static/tabbar-icon/user-s.png"
  75. }
  76. ]
  77. },
  78. "uniIdRouter": {}
  79. }