pages.json 926 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "globalStyle": {
  29. "titleNView": false,
  30. "navigationStyle": "custom",
  31. "navigationBarTextStyle": "black",
  32. "navigationBarTitleText": "uni-app",
  33. "navigationBarBackgroundColor": "#F8F8F8",
  34. "backgroundColor": "#F8F8F8"
  35. },
  36. "tabBar": {
  37. "list": [
  38. {
  39. "pagePath": "pages/index/index",
  40. "text": "慢病首页"
  41. },
  42. {
  43. "pagePath": "pages/health/health",
  44. "text": "健康数据"
  45. },
  46. {
  47. "pagePath": "pages/profile/profile",
  48. "text": "个人中心"
  49. }
  50. ]
  51. }
  52. }