app.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/my",
  5. "pages/room/room",
  6. "pages/detail/detail",
  7. "pages/city/city",
  8. "pages/web/web",
  9. "pages/chat-list/chat-list",
  10. "pages/chat/chat",
  11. "pages/map/map",
  12. "pages/user-info/user-info",
  13. "pages/about/about",
  14. "pages/login/login",
  15. "pages/client/client",
  16. "pages/client-detail/client-detail",
  17. "pages/add-client/add-client",
  18. "pages/follow-list/follow-list",
  19. "pages/detail-intro/detail-intro",
  20. "pages/message-list/message-list",
  21. "pages/customer-list/customer-list",
  22. "pages/avatar-cropper/avatar-cropper"
  23. ],
  24. "usingComponents": {
  25. "search-bar": "components/searchbar/searchbar",
  26. "swiper-banner": "components/swiper/swiper",
  27. "tags-list": "components/tags/tags",
  28. "van-toast": "components/vant-ui/toast/index"
  29. },
  30. "window": {
  31. "navigationBarTitleText": "RealtorEasier",
  32. "navigationBarBackgroundColor": "#fff",
  33. "navigationBarTextStyle": "black"
  34. },
  35. "tabBar": {
  36. "custom": true,
  37. "color": "#79868F",
  38. "selectedColor": "#1FE4DC",
  39. "list": [
  40. {
  41. "selectedIconPath": "image/4Dage/tab/icon_tab_hose_active@2x.png",
  42. "iconPath": "image/4Dage/tab/icon_tab_hose_normal@2x.png",
  43. "pagePath": "pages/index/index",
  44. "text": "房源"
  45. },
  46. {
  47. "selectedIconPath": "image/4Dage/tab/icon_atab_customer_active@2x.png",
  48. "iconPath": "image/4Dage/tab/icon_atab_customer_normal@2x.png",
  49. "pagePath": "pages/client/client",
  50. "text": "客源"
  51. },
  52. {
  53. "selectedIconPath": "image/4Dage/tab/icon_atab_msg_active@2x.png",
  54. "iconPath": "image/4Dage/tab/icon_atab_msg_normal@2x.png",
  55. "pagePath": "pages/chat-list/chat-list",
  56. "text": "消息"
  57. },
  58. {
  59. "selectedIconPath": "image/4Dage/tab/icon_atab_me_active@2x.png",
  60. "iconPath": "image/4Dage/tab/icon_atab_me_normal@2x.png",
  61. "pagePath": "pages/my/my",
  62. "text": "我的"
  63. }
  64. ]
  65. },
  66. "permission": {
  67. "scope.userLocation": {
  68. "desc": "为了更好的服务,请授权位置信息"
  69. }
  70. },
  71. "sitemapLocation": "sitemap.json"
  72. }