app.json 2.1 KB

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