pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "globalStyle": {
  45. "navigationBarTextStyle": "black",
  46. "navigationBarTitleText": "uni-app",
  47. "navigationBarBackgroundColor": "#F8F8F8",
  48. "backgroundColor": "#F8F8F8"
  49. }
  50. }