app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/myCenter/index",
  5. "pages/myCenter/personalData/personalData",
  6. "pages/myCenter/updatePassword/updatePassword",
  7. "pages/login/index",
  8. "pages/webview/webview"
  9. ],
  10. "subPackages": [
  11. {
  12. "root": "packageA",
  13. "pages": [
  14. "pages/danger/index",
  15. "pages/industry/index",
  16. "pages/disaster/index",
  17. "pages/duty/index",
  18. "pages/team/index",
  19. "pages/goods/index",
  20. "pages/goods/record"
  21. ]
  22. }
  23. ],
  24. "window": {
  25. "navigationBarTextStyle": "black",
  26. "navigationBarTitleText": "智慧创新",
  27. "navigationBarBackgroundColor": "#F8F8F8",
  28. "backgroundColor": "#F8F8F8"
  29. },
  30. "tabBar": {
  31. "color": "#7A7E83",
  32. "selectedColor": "#1296db",
  33. "borderStyle": "black",
  34. "backgroundColor": "#ffffff",
  35. "iconWidth": "24px",
  36. "list": [
  37. {
  38. "pagePath": "pages/index/index",
  39. "iconPath": "static/tabbar/index.png",
  40. "selectedIconPath": "static/tabbar/indexEd.png",
  41. "text": "首页"
  42. },
  43. {
  44. "pagePath": "pages/myCenter/index",
  45. "iconPath": "static/tabbar/myCenter.png",
  46. "selectedIconPath": "static/tabbar/myCenterEd.png",
  47. "text": "我的",
  48. "style": {
  49. "navigationBarTitleText": "我的",
  50. "navigationBarBackgroundColor": "#3D90F4",
  51. "enablePullDownRefresh": false,
  52. "navigationStyle": "custom"
  53. }
  54. }
  55. ]
  56. },
  57. "usingComponents": {}
  58. }