app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index",
  5. "pages/myCenter/myCenter",
  6. "pages/myCenter/personalData/personalData",
  7. "pages/myCenter/updatePassword/updatePassword",
  8. "pages/webview/webview"
  9. ],
  10. "subPackages": [],
  11. "window": {
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "智慧创新",
  14. "navigationBarBackgroundColor": "#F8F8F8",
  15. "backgroundColor": "#F8F8F8"
  16. },
  17. "tabBar": {
  18. "color": "#7A7E83",
  19. "selectedColor": "#1296db",
  20. "borderStyle": "black",
  21. "backgroundColor": "#ffffff",
  22. "list": [
  23. {
  24. "pagePath": "pages/index/index",
  25. "iconPath": "static/tabbar/index.png",
  26. "selectedIconPath": "static/tabbar/indexEd.png",
  27. "text": "首页"
  28. },
  29. {
  30. "pagePath": "pages/history/history",
  31. "iconPath": "static/tabbar/history.png",
  32. "selectedIconPath": "static/tabbar/historyEd.png",
  33. "text": "历史"
  34. },
  35. {
  36. "pagePath": "pages/myCenter/myCenter",
  37. "iconPath": "static/tabbar/myCenter.png",
  38. "selectedIconPath": "static/tabbar/myCenterEd.png",
  39. "text": "我的"
  40. }
  41. ]
  42. },
  43. "usingComponents": {}
  44. }