app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/index",
  5. "pages/science/index",
  6. "pages/my/index",
  7. "pages/login/index"
  8. ],
  9. "subPackages": [
  10. {
  11. "root": "pagesHome",
  12. "pages": [
  13. "group/index",
  14. "friend/index",
  15. "other/agree"
  16. ]
  17. },
  18. {
  19. "root": "pagesScience",
  20. "pages": [
  21. "science/index"
  22. ]
  23. },
  24. {
  25. "root": "pagesMy",
  26. "pages": [
  27. "basic/index",
  28. "group/index",
  29. "person/index",
  30. "person/detail",
  31. "science/index",
  32. "answer/index"
  33. ]
  34. }
  35. ],
  36. "window": {
  37. "pageOrientation": "portrait",
  38. "navigationBarTitleText": "随访小程序",
  39. "navigationBarTextStyle": "black",
  40. "navigationBarBackgroundColor": "#F8F8F8",
  41. "backgroundColor": "#F8F8F8",
  42. "backgroundColorTop": "#F4F5F6",
  43. "backgroundColorBottom": "#F4F5F6"
  44. },
  45. "tabBar": {
  46. "color": "#7A7E83",
  47. "selectedColor": "#007AFF",
  48. "borderStyle": "black",
  49. "backgroundColor": "#F8F8F8",
  50. "list": [
  51. {
  52. "pagePath": "pages/home/index",
  53. "iconPath": "static/home.png",
  54. "selectedIconPath": "static/homeHL.png",
  55. "text": "健康问答"
  56. },
  57. {
  58. "pagePath": "pages/science/index",
  59. "iconPath": "static/science.png",
  60. "selectedIconPath": "static/scienceHL.png",
  61. "text": "医疗科普"
  62. },
  63. {
  64. "pagePath": "pages/my/index",
  65. "iconPath": "static/my.png",
  66. "selectedIconPath": "static/myHL.png",
  67. "text": "个人中心"
  68. }
  69. ]
  70. },
  71. "lazyCodeLoading": "requiredComponents",
  72. "usingComponents": {}
  73. }