app.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/login",
  5. "pages/order/order",
  6. "pages/my/my",
  7. "pages/message/message",
  8. "pages/house/house",
  9. "pages/houseDetail/houseDetail"
  10. ],
  11. "subPackages": [],
  12. "window": {
  13. "navigationBarTextStyle": "black",
  14. "navigationBarTitleText": "有极物业",
  15. "navigationBarBackgroundColor": "#ffffff",
  16. "backgroundColor": "#F8F8F8"
  17. },
  18. "tabBar": {
  19. "color": "#3a3a3a",
  20. "selectedColor": "#3371FF",
  21. "list": [
  22. {
  23. "text": "首页",
  24. "pagePath": "pages/index/index",
  25. "iconPath": "static/image/tabbar/index.png",
  26. "selectedIconPath": "static/image/tabbar/index-active.png"
  27. },
  28. {
  29. "text": "工单",
  30. "pagePath": "pages/order/order",
  31. "iconPath": "static/image/tabbar/order.png",
  32. "selectedIconPath": "static/image/tabbar/order-active.png"
  33. },
  34. {
  35. "text": "通知",
  36. "pagePath": "pages/message/message",
  37. "iconPath": "static/image/tabbar/message.png",
  38. "selectedIconPath": "static/image/tabbar/message-active.png"
  39. },
  40. {
  41. "text": "我的",
  42. "pagePath": "pages/my/my",
  43. "iconPath": "static/image/tabbar/my.png",
  44. "selectedIconPath": "static/image/tabbar/my-active.png"
  45. }
  46. ]
  47. },
  48. "usingComponents": {}
  49. }