app.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "pages/messageList/messageList",
  11. "pages/messageDetail/messageDetail",
  12. "pages/projectList/projectList"
  13. ],
  14. "subPackages": [],
  15. "window": {
  16. "navigationBarTextStyle": "black",
  17. "navigationBarTitleText": "有极物业",
  18. "navigationBarBackgroundColor": "#ffffff",
  19. "backgroundColor": "#F8F8F8"
  20. },
  21. "tabBar": {
  22. "color": "#3a3a3a",
  23. "selectedColor": "#3371FF",
  24. "list": [
  25. {
  26. "text": "首页",
  27. "pagePath": "pages/index/index",
  28. "iconPath": "static/image/tabbar/index.png",
  29. "selectedIconPath": "static/image/tabbar/index-active.png"
  30. },
  31. {
  32. "text": "工单",
  33. "pagePath": "pages/order/order",
  34. "iconPath": "static/image/tabbar/order.png",
  35. "selectedIconPath": "static/image/tabbar/order-active.png"
  36. },
  37. {
  38. "text": "通知",
  39. "pagePath": "pages/message/message",
  40. "iconPath": "static/image/tabbar/message.png",
  41. "selectedIconPath": "static/image/tabbar/message-active.png"
  42. },
  43. {
  44. "text": "我的",
  45. "pagePath": "pages/my/my",
  46. "iconPath": "static/image/tabbar/my.png",
  47. "selectedIconPath": "static/image/tabbar/my-active.png"
  48. }
  49. ]
  50. },
  51. "usingComponents": {}
  52. }