pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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": "诊断报告"
  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. "path" : "pages/checkReport/index",
  62. "style" :
  63. {
  64. "navigationBarTitleText": "诊断报告",
  65. "enablePullDownRefresh": false
  66. }
  67. }
  68. ,{
  69. "path" : "pages/checkReport/detail",
  70. "style" :
  71. {
  72. "navigationBarTitleText": "诊断报告",
  73. "enablePullDownRefresh": false
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uni-app",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. },
  83. "tabBar": {
  84. "color": "#7A7E83",
  85. "selectedColor": "#191919",
  86. "backgroundColor": "#ffffff",
  87. "fontSize": "14px",
  88. "list": [{
  89. "pagePath": "pages/index/index",
  90. "iconPath": "static/tab/tab_home_normal.png",
  91. "selectedIconPath": "static/tab/tab_home_pressed.png",
  92. "text": "会员/套餐"
  93. },
  94. {
  95. "pagePath": "pages/report/report",
  96. "iconPath": "static/tab/tab_personal_normal.png",
  97. "selectedIconPath": "static/tab/tab_personal_pressed.png",
  98. "text": "诊断报告"
  99. }
  100. ]
  101. }
  102. }