pages.json 562 B

12345678910111213141516171819202122232425
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. }, {
  9. "path": "pages/userinfo/userinfo",
  10. "style": {
  11. "navigationBarTitleText": "基础资料",
  12. "enablePullDownRefresh": true
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "慢病报告",
  19. "navigationBarBackgroundColor": "#F8F8F8",
  20. "backgroundColor": "#F8F8F8"
  21. },
  22. "uniIdRouter": {}
  23. }