pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  6. "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  7. "^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
  8. }
  9. },
  10. "pages": [{
  11. "path": "pages/chat/chat"
  12. }, {
  13. "path": "pages/login/login"
  14. },
  15. {
  16. "path": "pages/register/register"
  17. },
  18. {
  19. "path": "pages/friend/friend"
  20. },
  21. {
  22. "path": "pages/group/group"
  23. },
  24. {
  25. "path": "pages/mine/mine"
  26. },
  27. {
  28. "path": "pages/common/user-info"
  29. },
  30. {
  31. "path": "pages/chat/chat-box",
  32. "style": {
  33. "mp-weixin": {
  34. "disableScroll": true
  35. },
  36. "app-plus": {
  37. // adjustPan窗体高度不变,但窗体上推、adjustResize屏幕高度=webview窗体高度+软键盘高度
  38. "softinputMode": "adjustResize"
  39. }
  40. }
  41. },
  42. {
  43. "path": "pages/chat/chat-private-video"
  44. },
  45. {
  46. "path": "pages/chat/chat-group-video"
  47. },
  48. {
  49. "path": "pages/friend/friend-add"
  50. },
  51. {
  52. "path": "pages/group/group-info"
  53. },
  54. {
  55. "path": "pages/group/group-edit"
  56. },
  57. {
  58. "path": "pages/group/group-invite"
  59. },
  60. {
  61. "path": "pages/group/group-member"
  62. },
  63. {
  64. "path": "pages/mine/mine-edit"
  65. },
  66. {
  67. "path": "pages/mine/mine-password"
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTitleText": "盒子IM",
  72. "navigationBarTextStyle": "black",
  73. /* #ifndef MP-WEIXIN */
  74. "navigationStyle": "custom",
  75. /* #endif */
  76. /* #ifdef MP-WEIXIN */
  77. "navigationStyle": "default",
  78. /* #endif */
  79. "navigationBarBackgroundColor": "#f7f7f7",
  80. "backgroundColor": "#f7f7f7"
  81. },
  82. "tabBar": {
  83. "color": "#000000",
  84. "selectedColor": "#587ff0",
  85. "borderStyle": "black",
  86. "backgroundColor": "#ffffff",
  87. "list": [{
  88. "pagePath": "pages/chat/chat",
  89. "iconPath": "static/tab/chat.png",
  90. "selectedIconPath": "static/tab/chat_active.png",
  91. "text": "消息"
  92. },
  93. {
  94. "pagePath": "pages/friend/friend",
  95. "iconPath": "static/tab/friend.png",
  96. "selectedIconPath": "static/tab/friend_active.png",
  97. "text": "好友"
  98. },
  99. {
  100. "pagePath": "pages/group/group",
  101. "iconPath": "static/tab/group.png",
  102. "selectedIconPath": "static/tab/group_active.png",
  103. "text": "群聊"
  104. },
  105. {
  106. "pagePath": "pages/mine/mine",
  107. "iconPath": "static/tab/mine.png",
  108. "selectedIconPath": "static/tab/mine_active.png",
  109. "text": "我的"
  110. }
  111. ]
  112. },
  113. "uniIdRouter": {}
  114. }