app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "entryPagePath": "pages/home/index",
  3. "pages": [
  4. "pages/home/index",
  5. "pages/service/index",
  6. "pages/mine/index",
  7. "pages/login/index"
  8. ],
  9. "window": {
  10. "defaultTitle": ""
  11. },
  12. "tabBar": {
  13. "textColor": "#999",
  14. "selectedColor": "#1677FF",
  15. "backgroundColor": "#ffffff",
  16. "items": [
  17. {
  18. "pagePath": "pages/home/index",
  19. "name": "首页",
  20. "icon": "./static/tabbar/home.png",
  21. "activeIcon": "./static/tabbar/home_cur.png"
  22. },
  23. {
  24. "pagePath": "pages/service/index",
  25. "name": "人员列表",
  26. "icon": "./static/tabbar/list.png",
  27. "activeIcon": "./static/tabbar/list_cur.png"
  28. },
  29. {
  30. "pagePath": "pages/mine/index",
  31. "name": "我的",
  32. "icon": "./static/tabbar/mine.png",
  33. "activeIcon": "./static/tabbar/mine_cur.png"
  34. }
  35. ]
  36. },
  37. "behavior": {
  38. "requestReferrerStrategy": "page",
  39. "requestReferrerStyle": "full",
  40. "requestDefaultEnableCookie": true,
  41. "connectSocketDefaultMultiple": true
  42. },
  43. "lazyCodeLoading": "requiredComponents"
  44. }