pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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/login/login"
  12. }, {
  13. "path" : "pages/register/register"
  14. },{
  15. "path": "pages/chat/chat"
  16. }, {
  17. "path": "pages/friend/friend"
  18. }, {
  19. "path": "pages/group/group"
  20. }, {
  21. "path": "pages/mine/mine"
  22. }, {
  23. "path": "pages/common/user-info"
  24. }, {
  25. "path": "pages/chat/chat-box"
  26. },{
  27. "path": "pages/chat/chat-private-video"
  28. },{
  29. "path": "pages/chat/chat-group-video"
  30. }, {
  31. "path": "pages/friend/friend-add"
  32. }, {
  33. "path": "pages/group/group-info"
  34. }, {
  35. "path": "pages/group/group-edit"
  36. }, {
  37. "path": "pages/group/group-invite"
  38. }, {
  39. "path": "pages/group/group-member"
  40. }, {
  41. "path": "pages/mine/mine-edit"
  42. },{
  43. "path": "pages/mine/mine-password"
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTitleText": "盒子IM",
  48. "navigationBarTextStyle": "black",
  49. "navigationBarBackgroundColor": "#F0F0F0",
  50. "backgroundColor": "#fdfdfd"
  51. },
  52. "tabBar": {
  53. "color": "#000000",
  54. "selectedColor": "#587ff0",
  55. "borderStyle": "black",
  56. "backgroundColor": "#ffffff",
  57. "list": [{
  58. "pagePath": "pages/chat/chat",
  59. "iconPath": "static/tarbar/chat.png",
  60. "selectedIconPath": "static/tarbar/chat_active.png",
  61. "text": "消息"
  62. },
  63. {
  64. "pagePath": "pages/friend/friend",
  65. "iconPath": "static/tarbar/friend.png",
  66. "selectedIconPath": "static/tarbar/friend_active.png",
  67. "text": "好友"
  68. },
  69. {
  70. "pagePath": "pages/group/group",
  71. "iconPath": "static/tarbar/group.png",
  72. "selectedIconPath": "static/tarbar/group_active.png",
  73. "text": "群聊"
  74. },
  75. {
  76. "pagePath": "pages/mine/mine",
  77. "iconPath": "static/tarbar/mine.png",
  78. "selectedIconPath": "static/tarbar/mine_active.png",
  79. "text": "我的"
  80. }
  81. ]
  82. },
  83. "uniIdRouter": {}
  84. }