pages.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. // {
  4. // "path": "pages/login/login",
  5. // "style": {
  6. // "navigationBarTitleText": "登录页面",
  7. // "navigationBarBackgroundColor": "#d11c1c",
  8. // "navigationBarTextStyle": "white"
  9. // }
  10. // },
  11. {
  12. "path": "pages/home/index",
  13. "style": {
  14. "navigationBarTitleText": "首页",
  15. "navigationBarBackgroundColor": "#d11c1c",
  16. "navigationBarTextStyle": "white"
  17. }
  18. }, {
  19. "path": "pages/my/my",
  20. "style": {
  21. "navigationBarTitleText": "我的",
  22. "navigationBarBackgroundColor": "#449bd1",
  23. "enablePullDownRefresh": false,
  24. "navigationBarTextStyle": "white"
  25. }
  26. },
  27. {
  28. "path": "pages/message/message",
  29. "style": {
  30. "navigationBarTitleText": "消息",
  31. "navigationBarBackgroundColor": "#d11c1c",
  32. "enablePullDownRefresh": false,
  33. "navigationBarTextStyle": "white"
  34. }
  35. },
  36. {
  37. "path": "pages/communicate/communicate",
  38. "style": {
  39. "navigationBarTitleText": "沟通",
  40. "navigationBarBackgroundColor": "#d11c1c",
  41. "enablePullDownRefresh": false,
  42. "navigationBarTextStyle": "white"
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "uni-app",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8"
  51. },
  52. "tabBar": {
  53. "color": "#7A7E83",
  54. "selectedColor": "#1296db",
  55. "borderStyle": "black",
  56. "backgroundColor": "#ffffff",
  57. "list": [{
  58. "pagePath": "pages/home/index",
  59. "iconPath": "static/home.png",
  60. "selectedIconPath": "static/homeselect.png",
  61. "text": "首页"
  62. },
  63. {
  64. "pagePath": "pages/message/message",
  65. "iconPath": "static/goutong.png",
  66. "selectedIconPath": "static/goutong1.png",
  67. "text": "消息"
  68. },
  69. {
  70. "pagePath": "pages/communicate/communicate",
  71. "iconPath": "static/kefu.png",
  72. "selectedIconPath": "static/kefu1.png",
  73. "text": "沟通"
  74. }, {
  75. "pagePath": "pages/my/my",
  76. "iconPath": "static/my.png",
  77. "selectedIconPath": "static/myselect.png",
  78. "text": "我的"
  79. }
  80. ]
  81. }
  82. }