app.json 829 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/pay/index",
  5. "pages/user/index",
  6. "pages/webview/index"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#fff",
  11. "navigationBarTitleText": "大正陪护",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "style": "v2",
  15. "sitemapLocation": "sitemap.json",
  16. "tabBar": {
  17. "color": "#777777",
  18. "selectedColor": "#148d8f",
  19. "backgroundColor": "#FFFFFF",
  20. "list": [
  21. {
  22. "pagePath": "pages/index/index",
  23. "text": "首页",
  24. "iconPath": "images/home1.png",
  25. "selectedIconPath": "images/home2.png"
  26. },
  27. {
  28. "pagePath": "pages/user/index",
  29. "text": "我的",
  30. "iconPath": "images/user1.png",
  31. "selectedIconPath": "images/user2.png"
  32. }
  33. ]
  34. }
  35. }