pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "慢病APP"
  7. }
  8. },
  9. {
  10. "path": "pages/login/login",
  11. "style": {
  12. "navigationBarTitleText": "登录"
  13. }
  14. },
  15. {
  16. "path": "pages/health/health",
  17. "style": {
  18. "navigationBarTitleText": "健康数据"
  19. }
  20. },
  21. {
  22. "path": "pages/profile/profile",
  23. "style": {
  24. "navigationBarTitleText": "个人中心"
  25. }
  26. },
  27. {
  28. "path": "pages/profile/complete-info",
  29. "style": {
  30. "navigationBarTitleText": "完善信息"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "titleNView": false,
  36. "navigationStyle": "custom",
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "uni-app",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8"
  41. },
  42. "easycom": {
  43. "autoscan": true,
  44. "custom": {
  45. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  46. }
  47. },
  48. "tabBar": {
  49. "custom": true,
  50. "list": [
  51. {
  52. "pagePath": "pages/index/index",
  53. "text": "慢病首页"
  54. },
  55. {
  56. "pagePath": "pages/health/health",
  57. "text": "健康数据"
  58. },
  59. {
  60. "pagePath": "pages/profile/profile",
  61. "text": "个人中心"
  62. }
  63. ]
  64. }
  65. }