pages.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "会员/套餐",
  10. "enablePullDownRefresh": true,
  11. "navigationBarBackgroundColor": "#58c4c4"
  12. }
  13. },
  14. {
  15. "path": "pages/login/login",
  16. "style": {
  17. "navigationBarTitleText": "登录"
  18. }
  19. }, {
  20. "path": "pages/login/phoneLogin",
  21. "style": {
  22. "navigationBarTitleText": "手机号登录"
  23. }
  24. },
  25. {
  26. "path": "pages/about",
  27. "style": {
  28. "navigationBarTitleText": "关于我们"
  29. }
  30. },
  31. {
  32. "path": "pages/xieyi/index",
  33. "style": {
  34. "navigationBarTitleText": "用户协议和隐私政策"
  35. }
  36. },
  37. {
  38. "path": "pages/h5Page/index",
  39. "style": {
  40. "navigationBarTitleText": "h5"
  41. }
  42. }
  43. ,{
  44. "path" : "pages/bundelDetail/index",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "套餐详细",
  48. "enablePullDownRefresh": false
  49. }
  50. }
  51. ,{
  52. "path" : "pages/report/report",
  53. "style" :
  54. {
  55. "navigationBarTitleText": "诊断报告",
  56. "enablePullDownRefresh": true,
  57. "navigationBarBackgroundColor": "#58c4c4"
  58. }
  59. }
  60. ],
  61. "globalStyle": {
  62. "navigationBarTextStyle": "black",
  63. "navigationBarTitleText": "uni-app",
  64. "navigationBarBackgroundColor": "#F8F8F8",
  65. "backgroundColor": "#F8F8F8"
  66. },
  67. "tabBar": {
  68. "color": "#7A7E83",
  69. "selectedColor": "#191919",
  70. "backgroundColor": "#ffffff",
  71. "fontSize": "14px",
  72. "list": [{
  73. "pagePath": "pages/index/index",
  74. "iconPath": "static/tab/tab_home_normal.png",
  75. "selectedIconPath": "static/tab/tab_home_pressed.png",
  76. "text": "会员/套餐"
  77. },
  78. {
  79. "pagePath": "pages/report/report",
  80. "iconPath": "static/tab/tab_personal_normal.png",
  81. "selectedIconPath": "static/tab/tab_personal_pressed.png",
  82. "text": "诊断报告"
  83. }
  84. ]
  85. }
  86. }