app.json 676 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "entryPagePath": "pages/index/index",
  3. "pages": [
  4. "pages/permisission/permission",
  5. "pages/index/index",
  6. "pages/report/report",
  7. "pages/my/my"
  8. ],
  9. "window": {
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#45A6B5",
  12. "navigationBarTitleText": "ITT健康检测",
  13. "navigationBarTextStyle": "white"
  14. },
  15. "tabBar": {
  16. "list": [
  17. {
  18. "pagePath": "pages/index/index",
  19. "text": "首页"
  20. },
  21. {
  22. "pagePath": "pages/report/report",
  23. "text": "报告"
  24. },
  25. {
  26. "pagePath": "pages/my/my",
  27. "text": "我的"
  28. }
  29. ]
  30. },
  31. "sitemapLocation": "sitemap.json"
  32. }