首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

聊天室、websocket、socket.io、毕业设计

网络技术 29.19MB 10 需要积分: 1
立即下载

资源介绍:

功能 登陆注册 单聊 群聊 历史消息 图片发送 文件发送 代码片段发送 表情发送 白板协作 音视频聊天 消息已读提醒 好友分组 好友备注 好友上线提醒 在线用户头像高亮 添加好友 添加群聊 朋友圈功能 发表朋友圈 好友朋友圈 朋友圈动态点赞 朋友圈动态评论 朋友圈动态回复评论 日程设置
# Co-messager > 本项目不再维护,如在阅读**文档**、观看**视频**后任有问题可以加群或者本人 `QQ` 和微信。 ## 相关工具版本 1. node: 12.14.0 2. npm: 6.4.1 3. MongoDB: 5.0.3 ## 相关地址 - [掘金-文章](https://juejin.im/post/5e8dd45cf265da47e34bf94d) - [功能介绍-视频](https://www.bilibili.com/video/BV1aX4y1K7EF?p=1) - [项目运行-视频](https://www.bilibili.com/video/BV1aX4y1K7EF?p=2) ## 功能 - [x] 登陆注册 - [x] 单聊 - [x] 群聊 - [x] 历史消息 - [x] 图片发送 - [ ] 文件发送 - [ ] 代码片段发送 - [x] 表情发送 - [x] 白板协作 - [x] 音视频聊天 - [x] 消息已读提醒 - [x] 好友分组 - [x] 好友备注 - [x] 好友上线提醒 - [x] 在线用户头像高亮 - [x] 添加好友 - [x] 添加群聊 - [x] 朋友圈功能 - [x] 发表朋友圈 - [x] 好友朋友圈 - [x] 朋友圈动态点赞 - [x] 朋友圈动态评论 - [x] 朋友圈动态回复评论 - [x] 日程设置 ## 启动项目 ### 1、克隆项目 ```bash git clone git@github.com:CCZX/wechat.git ``` 或者下载压缩包解压也可以。 ### 2、删除相关代码 > 这部分代码是在我的数据库里,所以你需要删除或者替换相关代码以防报错 ![removed code](./document/clean.png) **需要注意的是这一步需要在启动服务端之前执行。不然会出现不可预料的错误** ### 2、启动MongoDB数据库 ```bash mongo ``` 如果还没有安装MongoDB可以参考下面文章: - [mongoDB - 菜鸟教程](https://www.runoob.com/mongodb/mongodb-tutorial.html) - [mongoDB的安装和启动](https://juejin.cn/post/6844903958826188808) ### 3、启动服务器 ```bash cd chatServer npm install # 初始化数据库,初始化成功后可以看到自动创建了chat数据库 node init.js node app.js ``` ### 4、启动客户端 ```bash cd chatClient npm install npm run dev ``` 启动成功后访问[127.0.0.1:8080](127.0.0.1:8080)即可访问。 ### 5、启动管理员端(3000端口) ```bash cd chatAdmin npm install npm start ``` 启动成功后访问[127.0.0.1:3000](127.0.0.1:3000)即可访问。 ### 6、Q&A 按照上述步骤启动一般是不会出问题,有问题请首先排查是否**执行顺序**不一致,以及数据库是否启动。 ## 项目截图 **github上如果没有科学上网容易裂图,推荐在掘金上看:** 地址:https://juejin.im/post/5e8dd45cf265da47e34bf94d ### PC端 #### 1、主页 ![主页](./document/screenshots/p-home.png) #### 2、聊天 ![聊天](./document/screenshots/p-chat1.png) ![已读设置](./document/screenshots/p-chat2.png) ![通知](./document/screenshots/p-notify.png) #### 3、朋友圈 ![朋友圈](./document/screenshots/p-pyq1.png) ![朋友圈评论](./document/screenshots/p-pyq2.png) #### 4、主题设置 ![主题](./document/screenshots/p-theme.png) #### 5、日程 ![日程](./document/screenshots/p-schedule1.png) ![新建日程](./document/screenshots/p-schedule2.png) #### 6、个人中心 ![设置](./document/screenshots/p-personcenter.png) ### 移动端 #### 1、登录 ![移动端](./document/screenshots/m-login.png) #### 2、聊天列表 ![移动端](./document/screenshots/m-aside.png) ![移动端](./document/screenshots/m-conversationlist.png) #### 3、聊天界面 ![移动端](./document/screenshots/m-chat.png) #### 4、图片预览 ![移动端](./document/screenshots/m-picpreview.png) #### 5、换肤 ![移动端](./document/screenshots/m-theme.png) #### 6、朋友圈 ![移动端](./document/screenshots/m-pyq.png) ## 系统功能图 ### 普通用户 ![普通用户功能设计0404](./document/普通用户功能设计0404.png) ### 管理员 ![普通用户功能设计0404](./document/系统管理员功能设计0404.png) ## 技术路线 > 本系统分为`Client`,`Server`,`Admin`三个端:其中`Client`为客户端,`Server`为服务器端,`Admin`为管理员端。使用前后端分离的开发模式 - 客户端使用`Vue`、`VueX`、`Vue-Router`; - 管理员端使用`React`、`antd`; - 后端使用的是`node.js`; - 数据库使用的是`MongoDB`; - 在实现聊天的全双工数据通信使用的是`WebSocket`、`socket.io`。 ## 项目打包 1. 客户端的代码打包后资源默认放在`chatServer`文件夹的`public`目录下; 2. 管理员端在`chatAdmin`的`build`目录下,需要自己自己手动将整个build目录复制到`chatServer`文件夹的`public`目录下,然后修改`build`目录文件的`index.html`中引入资源路径前都加上`/build`。 ## 交流 - qq群 ![qq](./document/resources/qqgroup.jpg) - `E-mail`:`ccdebuging@gmail.com`、`cAuth1218@163.com` - `QQ`:`1831058205` - 微信:`cAutg9248` ## 参考项目 - https://github.com/wuyawei

资源文件列表:

wechat.zip 大约有876个文件
  1. wechat/
  2. wechat/.gitignore 388B
  3. wechat/README.md 4.65KB
  4. wechat/chatAdmin/
  5. wechat/chatAdmin/.gitignore 310B
  6. wechat/chatAdmin/README.md 2.81KB
  7. wechat/chatAdmin/package-lock.json 591.3KB
  8. wechat/chatAdmin/package.json 1.15KB
  9. wechat/chatAdmin/public/
  10. wechat/chatAdmin/public/favicon.ico 3.78KB
  11. wechat/chatAdmin/public/images/
  12. wechat/chatAdmin/public/images/2.jpg 821.24KB
  13. wechat/chatAdmin/public/images/bg1.jpg 446.53KB
  14. wechat/chatAdmin/public/index.html 1.74KB
  15. wechat/chatAdmin/public/manifest.json 306B
  16. wechat/chatAdmin/src/
  17. wechat/chatAdmin/src/api/
  18. wechat/chatAdmin/src/api/index.js 261B
  19. wechat/chatAdmin/src/api/modules/
  20. wechat/chatAdmin/src/api/modules/admin.js 347B
  21. wechat/chatAdmin/src/api/modules/group.js 150B
  22. wechat/chatAdmin/src/api/modules/system.js 192B
  23. wechat/chatAdmin/src/api/modules/user.js 634B
  24. wechat/chatAdmin/src/components/
  25. wechat/chatAdmin/src/components/BizChart/
  26. wechat/chatAdmin/src/components/BizChart/DashBoard/
  27. wechat/chatAdmin/src/components/BizChart/DashBoard/index.js 3.19KB
  28. wechat/chatAdmin/src/components/BizChart/Histogram/
  29. wechat/chatAdmin/src/components/BizChart/Histogram/index.js 431B
  30. wechat/chatAdmin/src/components/BizChart/Line/
  31. wechat/chatAdmin/src/components/BizChart/Line/index.js 614B
  32. wechat/chatAdmin/src/components/BizChart/Pie/
  33. wechat/chatAdmin/src/components/BizChart/Pie/index.js 1.07KB
  34. wechat/chatAdmin/src/const/
  35. wechat/chatAdmin/src/const/bizChart.js 664B
  36. wechat/chatAdmin/src/index.css 30B
  37. wechat/chatAdmin/src/index.js 332B
  38. wechat/chatAdmin/src/layout/
  39. wechat/chatAdmin/src/layout/ContentMain/
  40. wechat/chatAdmin/src/layout/ContentMain/index.js 1.69KB
  41. wechat/chatAdmin/src/layout/ContentMain/index.scss 193B
  42. wechat/chatAdmin/src/layout/CustomBreadcrumb/
  43. wechat/chatAdmin/src/layout/CustomBreadcrumb/const.js 426B
  44. wechat/chatAdmin/src/layout/CustomBreadcrumb/index.js 856B
  45. wechat/chatAdmin/src/layout/CustomHeader/
  46. wechat/chatAdmin/src/layout/CustomHeader/index.js 2.38KB
  47. wechat/chatAdmin/src/layout/CustomHeader/index.scss 184B
  48. wechat/chatAdmin/src/layout/CustomMenu/
  49. wechat/chatAdmin/src/layout/CustomMenu/index.js 3.42KB
  50. wechat/chatAdmin/src/layout/SiderNav/
  51. wechat/chatAdmin/src/layout/SiderNav/index.js 506B
  52. wechat/chatAdmin/src/layout/SiderNav/index.scss 152B
  53. wechat/chatAdmin/src/pages/
  54. wechat/chatAdmin/src/pages/Admin/
  55. wechat/chatAdmin/src/pages/Admin/addForm.js 1.19KB
  56. wechat/chatAdmin/src/pages/Admin/index.js 2.99KB
  57. wechat/chatAdmin/src/pages/Admin/index.scss 125B
  58. wechat/chatAdmin/src/pages/Group/
  59. wechat/chatAdmin/src/pages/Group/Edit/
  60. wechat/chatAdmin/src/pages/Group/Edit/index.js 360B
  61. wechat/chatAdmin/src/pages/Group/Statisic/
  62. wechat/chatAdmin/src/pages/Group/Statisic/index.js 152B
  63. wechat/chatAdmin/src/pages/Group/index.js 111B
  64. wechat/chatAdmin/src/pages/Home/
  65. wechat/chatAdmin/src/pages/Home/index.js 1.09KB
  66. wechat/chatAdmin/src/pages/Home/index.scss 313B
  67. wechat/chatAdmin/src/pages/Login/
  68. wechat/chatAdmin/src/pages/Login/index.js 996B
  69. wechat/chatAdmin/src/pages/Login/index.scss 741B
  70. wechat/chatAdmin/src/pages/Login/loign.js 1.91KB
  71. wechat/chatAdmin/src/pages/Login/register.js 811B
  72. wechat/chatAdmin/src/pages/Statics/
  73. wechat/chatAdmin/src/pages/Statics/avatar.js 927B
  74. wechat/chatAdmin/src/pages/Statics/avatar.scss 570B
  75. wechat/chatAdmin/src/pages/User/
  76. wechat/chatAdmin/src/pages/User/EditUser/
  77. wechat/chatAdmin/src/pages/User/EditUser/components/
  78. wechat/chatAdmin/src/pages/User/EditUser/components/Modal.js 870B
  79. wechat/chatAdmin/src/pages/User/EditUser/const.js 4.56KB
  80. wechat/chatAdmin/src/pages/User/EditUser/help.js 4.58KB
  81. wechat/chatAdmin/src/pages/User/EditUser/index.js 2.51KB
  82. wechat/chatAdmin/src/pages/User/StatisticsUser/
  83. wechat/chatAdmin/src/pages/User/StatisticsUser/components/
  84. wechat/chatAdmin/src/pages/User/StatisticsUser/components/Map/
  85. wechat/chatAdmin/src/pages/User/StatisticsUser/components/Map/index.js 5.13KB
  86. wechat/chatAdmin/src/pages/User/StatisticsUser/const.js 3.45KB
  87. wechat/chatAdmin/src/pages/User/StatisticsUser/index.js 5.82KB
  88. wechat/chatAdmin/src/pages/User/StatisticsUser/index.scss 175B
  89. wechat/chatAdmin/src/pages/User/index.js 117B
  90. wechat/chatAdmin/src/route/
  91. wechat/chatAdmin/src/route/const.js 1.88KB
  92. wechat/chatAdmin/src/route/index.js 1.71KB
  93. wechat/chatAdmin/src/store/
  94. wechat/chatAdmin/src/store/index.js 411B
  95. wechat/chatAdmin/src/store/modules/
  96. wechat/chatAdmin/src/store/modules/app/
  97. wechat/chatAdmin/src/store/modules/app/actionCreators.js 218B
  98. wechat/chatAdmin/src/store/modules/app/constants.js 103B
  99. wechat/chatAdmin/src/store/modules/app/index.js 171B
  100. wechat/chatAdmin/src/store/modules/app/reducer.js 623B
  101. wechat/chatAdmin/src/store/reducer.js 159B
  102. wechat/chatAdmin/src/styles/
  103. wechat/chatAdmin/src/styles/base.scss 857B
  104. wechat/chatAdmin/src/utils/
  105. wechat/chatAdmin/src/utils/index.js 3.57KB
  106. wechat/chatAdmin/src/utils/request.js 1.28KB
  107. wechat/chatClient/
  108. wechat/chatClient/.babelrc 230B
  109. wechat/chatClient/.editorconfig 147B
  110. wechat/chatClient/.gitignore 154B
  111. wechat/chatClient/.postcssrc.js 246B
  112. wechat/chatClient/README.md 453B
  113. wechat/chatClient/build/
  114. wechat/chatClient/build/build.js 1.17KB
  115. wechat/chatClient/build/check-versions.js 1.26KB
  116. wechat/chatClient/build/logo.png 6.69KB
  117. wechat/chatClient/build/utils.js 2.53KB
  118. wechat/chatClient/build/vue-loader.conf.js 553B
  119. wechat/chatClient/build/webpack.base.conf.js 2.08KB
  120. wechat/chatClient/build/webpack.dev.conf.js 2.93KB
  121. wechat/chatClient/build/webpack.prod.conf.js 4.94KB
  122. wechat/chatClient/config/
  123. wechat/chatClient/config/dev.env.js 237B
  124. wechat/chatClient/config/index.js 2.23KB
  125. wechat/chatClient/config/prod.env.js 95B
  126. wechat/chatClient/index.html 2.14KB
  127. wechat/chatClient/package-lock.json 415.67KB
  128. wechat/chatClient/package.json 2.16KB
  129. wechat/chatClient/src/
  130. wechat/chatClient/src/App.vue 1.65KB
  131. wechat/chatClient/src/PopUps.vue 2.7KB
  132. wechat/chatClient/src/SVGComponents/
  133. wechat/chatClient/src/SVGComponents/chat.vue 10.2KB
  134. wechat/chatClient/src/SVGComponents/empty.vue 38.75KB
  135. wechat/chatClient/src/api/
  136. wechat/chatClient/src/api/index.js 467B
  137. wechat/chatClient/src/api/modules/
  138. wechat/chatClient/src/api/modules/blog.js 624B
  139. wechat/chatClient/src/api/modules/friendly.js 375B
  140. wechat/chatClient/src/api/modules/group.js 1.45KB
  141. wechat/chatClient/src/api/modules/news.js 545B
  142. wechat/chatClient/src/api/modules/pyq.js 1021B
  143. wechat/chatClient/src/api/modules/sys.js 525B
  144. wechat/chatClient/src/api/modules/user.js 1.03KB
  145. wechat/chatClient/src/api/modules/users.js 1.44KB
  146. wechat/chatClient/src/api/modules/validate.js 213B
  147. wechat/chatClient/src/assets/
  148. wechat/chatClient/src/assets/logo.png 6.69KB
  149. wechat/chatClient/src/components/
  150. wechat/chatClient/src/components/avatarChoose/
  151. wechat/chatClient/src/components/avatarChoose/index.vue 1.48KB
  152. wechat/chatClient/src/components/avatarHeader/
  153. wechat/chatClient/src/components/avatarHeader/index.vue 1.79KB
  154. wechat/chatClient/src/components/backTop/
  155. wechat/chatClient/src/components/backTop/index.vue 1.08KB
  156. wechat/chatClient/src/components/bearingModal/
  157. wechat/chatClient/src/components/bearingModal/index.vue 1.19KB
  158. wechat/chatClient/src/components/beizhuModal/
  159. wechat/chatClient/src/components/beizhuModal/index.vue 1.78KB
  160. wechat/chatClient/src/components/colorPick/
  161. wechat/chatClient/src/components/colorPick/index.vue 2.4KB
  162. wechat/chatClient/src/components/copyright/
  163. wechat/chatClient/src/components/copyright/index.vue 590B
  164. wechat/chatClient/src/components/createGroup/
  165. wechat/chatClient/src/components/createGroup/index.vue 3.11KB
  166. wechat/chatClient/src/components/cropper/
  167. wechat/chatClient/src/components/cropper/index.vue 3.73KB
  168. wechat/chatClient/src/components/customCommentList/
  169. wechat/chatClient/src/components/customCommentList/index.vue 10.79KB
  170. wechat/chatClient/src/components/customEmoji/
  171. wechat/chatClient/src/components/customEmoji/index.vue 1.53KB
  172. wechat/chatClient/src/components/customGroupUserList/
  173. wechat/chatClient/src/components/customGroupUserList/index.vue 2.35KB
  174. wechat/chatClient/src/components/customMap/
  175. wechat/chatClient/src/components/customMap/index.vue 1.54KB
  176. wechat/chatClient/src/components/customPictureView/
  177. wechat/chatClient/src/components/customPictureView/index.vue 2.28KB
  178. wechat/chatClient/src/components/customSearchList/
  179. wechat/chatClient/src/components/customSearchList/groupList.vue 3.91KB
  180. wechat/chatClient/src/components/customSearchList/index.vue 4.08KB
  181. wechat/chatClient/src/components/customSearchList/userList.vue 3.89KB
  182. wechat/chatClient/src/components/customUploadImg/
  183. wechat/chatClient/src/components/customUploadImg/index.vue 4.55KB
  184. wechat/chatClient/src/components/customWeather/
  185. wechat/chatClient/src/components/customWeather/index.vue 964B
  186. wechat/chatClient/src/components/customWeather/item.vue 1.92KB
  187. wechat/chatClient/src/components/fenzuModal/
  188. wechat/chatClient/src/components/fenzuModal/index.vue 3.19KB
  189. wechat/chatClient/src/components/messageTypes/
  190. wechat/chatClient/src/components/messageTypes/artBoard.vue 233B
  191. wechat/chatClient/src/components/messageTypes/audio.vue 213B
  192. wechat/chatClient/src/components/messageTypes/file.vue 205B
  193. wechat/chatClient/src/components/messageTypes/img.vue 2.23KB
  194. wechat/chatClient/src/components/messageTypes/index.js 802B
  195. wechat/chatClient/src/components/messageTypes/messageTextMenu.vue 1.43KB
  196. wechat/chatClient/src/components/messageTypes/sys.vue 351B
  197. wechat/chatClient/src/components/messageTypes/text.vue 469B
  198. wechat/chatClient/src/components/messageTypes/video.vue 212B
  199. wechat/chatClient/src/components/mzonePyq/
  200. wechat/chatClient/src/components/mzonePyq/index.vue 16.37KB
  201. wechat/chatClient/src/components/mzonePyqEdit/
  202. wechat/chatClient/src/components/mzonePyqEdit/index.vue 5KB
  203. wechat/chatClient/src/components/partTitle/
  204. wechat/chatClient/src/components/partTitle/index.vue 648B
  205. wechat/chatClient/src/components/picturePreview/
  206. wechat/chatClient/src/components/picturePreview/index.vue 4.71KB
  207. wechat/chatClient/src/components/search/
  208. wechat/chatClient/src/components/search/index.vue 1.89KB
  209. wechat/chatClient/src/components/sendMZone/
  210. wechat/chatClient/src/components/sendMZone/index.vue 7.24KB
  211. wechat/chatClient/src/components/suckTop/
  212. wechat/chatClient/src/components/suckTop/index.vue 1.66KB
  213. wechat/chatClient/src/components/theme/
  214. wechat/chatClient/src/components/theme/index.vue 7.7KB
  215. wechat/chatClient/src/components/toast/
  216. wechat/chatClient/src/components/toast/main.js 610B
  217. wechat/chatClient/src/components/toast/main.vue 955B
  218. wechat/chatClient/src/components/todo/
  219. wechat/chatClient/src/components/todo/index.vue 1.74KB
  220. wechat/chatClient/src/components/userCard/
  221. wechat/chatClient/src/components/userCard/index.vue 1.1KB
  222. wechat/chatClient/src/components/userProfile/
  223. wechat/chatClient/src/components/userProfile/index.vue 407B
  224. wechat/chatClient/src/components/validateNews/
  225. wechat/chatClient/src/components/validateNews/index.vue 6.42KB
  226. wechat/chatClient/src/const/
  227. wechat/chatClient/src/const/emoji.json 2.05KB
  228. wechat/chatClient/src/const/index.js 2.44KB
  229. wechat/chatClient/src/directives/
  230. wechat/chatClient/src/directives/index.js 1.54KB
  231. wechat/chatClient/src/main.js 1.85KB
  232. wechat/chatClient/src/plugins/
  233. wechat/chatClient/src/plugins/highlight.js 1.49KB
  234. wechat/chatClient/src/plugins/marked.js 2.67KB
  235. wechat/chatClient/src/router/
  236. wechat/chatClient/src/router/index.js 2.96KB
  237. wechat/chatClient/src/store/
  238. wechat/chatClient/src/store/constants.js 96B
  239. wechat/chatClient/src/store/index.js 340B
  240. wechat/chatClient/src/store/modules/
  241. wechat/chatClient/src/store/modules/app.js 3.17KB
  242. wechat/chatClient/src/store/modules/device.js 1.41KB
  243. wechat/chatClient/src/store/modules/news.js 2.46KB
  244. wechat/chatClient/src/store/modules/theme.js 2.86KB
  245. wechat/chatClient/src/store/modules/user.js 841B
  246. wechat/chatClient/src/utils/
  247. wechat/chatClient/src/utils/artboard.js 7.38KB
  248. wechat/chatClient/src/utils/cvcode.js 802B
  249. wechat/chatClient/src/utils/index.js 10.97KB
  250. wechat/chatClient/src/utils/reg.js 1.18KB
  251. wechat/chatClient/src/utils/request.js 1.86KB
  252. wechat/chatClient/src/utils/token.js 297B
  253. wechat/chatClient/src/utils/xss.js 151B
  254. wechat/chatClient/src/views/
  255. wechat/chatClient/src/views/404.vue 2.55KB
  256. wechat/chatClient/src/views/Add.vue 5.82KB
  257. wechat/chatClient/src/views/BlogInfo.vue 4.68KB
  258. wechat/chatClient/src/views/CoArtBoard.vue 11.97KB
  259. wechat/chatClient/src/views/CoVideo.vue 7.82KB
  260. wechat/chatClient/src/views/Index.vue 4.67KB
  261. wechat/chatClient/src/views/Login.vue 9.66KB
  262. wechat/chatClient/src/views/MZone/
  263. wechat/chatClient/src/views/MZone/blog.vue 3KB
  264. wechat/chatClient/src/views/MZone/blogMetaDialog.vue 6KB
  265. wechat/chatClient/src/views/MZone/editorBlog.vue 2.19KB
  266. wechat/chatClient/src/views/MZone/index.vue 7KB
  267. wechat/chatClient/src/views/Schedule.vue 5.16KB
  268. wechat/chatClient/src/views/Setting.vue 8.67KB
  269. wechat/chatClient/src/views/SystemNews.vue 3.46KB
  270. wechat/chatClient/src/views/UserDetails.vue 4.46KB
  271. wechat/chatClient/src/views/chat/
  272. wechat/chatClient/src/views/chat/ChatArea.vue 14.2KB
  273. wechat/chatClient/src/views/chat/components/
  274. wechat/chatClient/src/views/chat/components/GroupDesc.vue 1.21KB
  275. wechat/chatClient/src/views/chat/components/Header.vue 5.2KB
  276. wechat/chatClient/src/views/chat/components/HistoryMsg.vue 4.57KB
  277. wechat/chatClient/src/views/chat/components/HistoryMsgItem.vue 1.36KB
  278. wechat/chatClient/src/views/chat/components/MessageItem.vue 7.05KB
  279. wechat/chatClient/src/views/chat/components/MessageList.vue 3.5KB
  280. wechat/chatClient/src/views/chat/components/settingPanel.vue 1.77KB
  281. wechat/chatClient/src/views/chat/index.vue 540B
  282. wechat/chatClient/src/views/conversation/
  283. wechat/chatClient/src/views/conversation/ConversationItem.vue 8.08KB
  284. wechat/chatClient/src/views/conversation/ConversationList.vue 5.74KB
  285. wechat/chatClient/src/views/conversation/FenzuConversation.vue 7.72KB
  286. wechat/chatClient/src/views/conversation/FenzuMenu.vue 1.53KB
  287. wechat/chatClient/src/views/conversation/GroupConversation.vue 3.36KB
  288. wechat/chatClient/src/views/conversation/Menu.vue 2.54KB
  289. wechat/chatClient/src/views/conversation/RecentConversation.vue 7.28KB
  290. wechat/chatClient/src/views/conversation/TopSearch.vue 660B
  291. wechat/chatClient/src/views/layout/
  292. wechat/chatClient/src/views/layout/Index.vue 10.24KB
  293. wechat/chatClient/src/views/layout/components/
  294. wechat/chatClient/src/views/layout/components/Aside.vue 3.33KB
  295. wechat/chatClient/src/views/layout/components/Header.vue 10.56KB
  296. wechat/chatClient/src/views/layout/components/operMenu.vue 2.19KB
  297. wechat/chatClient/static/
  298. wechat/chatClient/static/.gitkeep
  299. wechat/chatClient/static/audio/
  300. wechat/chatClient/static/audio/apple.mp3 25.63KB
  301. wechat/chatClient/static/audio/default.mp3 10.2KB
  302. wechat/chatClient/static/audio/huaji.mp3 7.63KB
  303. wechat/chatClient/static/audio/mobileqq.mp3 32.32KB
  304. wechat/chatClient/static/audio/momo.mp3 32.63KB
  305. wechat/chatClient/static/audio/notify.mp3 8.97KB
  306. wechat/chatClient/static/audio/pcqq.mp3 15.55KB
  307. wechat/chatClient/static/css/
  308. wechat/chatClient/static/css/animation.scss 3.42KB
  309. wechat/chatClient/static/css/base.css 4.32KB
  310. wechat/chatClient/static/css/base.scss 9.31KB
  311. wechat/chatClient/static/css/cropper.scss 4.21KB
  312. wechat/chatClient/static/css/markdown.css 11.39KB
  313. wechat/chatClient/static/css/theme.scss
  314. wechat/chatClient/static/css/var.scss 3.78KB
  315. wechat/chatClient/static/iconfont/
  316. wechat/chatClient/static/iconfont/iconfont.css 9.42KB
  317. wechat/chatClient/static/iconfont/iconfont.eot 9.96KB
  318. wechat/chatClient/static/iconfont/iconfont.js 42.19KB
  319. wechat/chatClient/static/iconfont/iconfont.json 4.53KB
  320. wechat/chatClient/static/iconfont/iconfont.svg 40.3KB
  321. wechat/chatClient/static/iconfont/iconfont.ttf 9.8KB
  322. wechat/chatClient/static/iconfont/iconfont.woff 6.63KB
  323. wechat/chatClient/static/iconfont/iconfont.woff2 5.56KB
  324. wechat/chatClient/static/image/
  325. wechat/chatClient/static/image/1.jpg 541.97KB
  326. wechat/chatClient/static/image/2.jpg 821.24KB
  327. wechat/chatClient/static/image/3.jpg 164.98KB
  328. wechat/chatClient/static/image/4.jpg 1.16MB
  329. wechat/chatClient/static/image/404.gif 491.4KB
  330. wechat/chatClient/static/image/bg.jpg 57.42KB
  331. wechat/chatClient/static/image/bg.png 168B
  332. wechat/chatClient/static/image/canvas.jpg 24.26KB
  333. wechat/chatClient/static/image/canvas2.jpg 218.44KB
  334. wechat/chatClient/static/image/empty.png 69.93KB
  335. wechat/chatClient/static/image/favicon.ico 9.91KB
  336. wechat/chatClient/static/image/icons.png 3.81KB
  337. wechat/chatClient/static/image/logo.jpg 9.91KB
  338. wechat/chatClient/static/image/ocean1.jpg 274.68KB
  339. wechat/chatClient/static/image/theme/
  340. wechat/chatClient/static/image/theme/abstract.jpg 164.98KB
  341. wechat/chatClient/static/image/theme/city.jpg 1.42MB
  342. wechat/chatClient/static/image/theme/ocean.jpg 274.68KB
  343. wechat/chatClient/static/image/zw1.jpg 145.81KB
  344. wechat/chatClient/static/image/zw2.jpg 23.64KB
  345. wechat/chatServer/
  346. wechat/chatServer/app.js 8.02KB
  347. wechat/chatServer/bin/
  348. wechat/chatServer/bin/www 1.55KB
  349. wechat/chatServer/const/
  350. wechat/chatServer/const/index.js 1.47KB
  351. wechat/chatServer/controller/
  352. wechat/chatServer/controller/blog.js 1.82KB
  353. wechat/chatServer/controller/friendly.js 3.27KB
  354. wechat/chatServer/controller/group.js 4.15KB
  355. wechat/chatServer/controller/groupNews.js 1.95KB
  356. wechat/chatServer/controller/init.js 5.75KB
  357. wechat/chatServer/controller/news.js 2.4KB
  358. wechat/chatServer/controller/pyqComment.js 644B
  359. wechat/chatServer/controller/pyqLike.js 716B
  360. wechat/chatServer/controller/pyqNews.js 6.71KB
  361. wechat/chatServer/controller/superUser.js 1.39KB
  362. wechat/chatServer/controller/system.js 2.15KB
  363. wechat/chatServer/controller/user.js 12.74KB
  364. wechat/chatServer/controller/validateNews.js 1.14KB
  365. wechat/chatServer/init.js 117B
  366. wechat/chatServer/middleware/
  367. wechat/chatServer/middleware/index.js 187B
  368. wechat/chatServer/middleware/isadmin.js 1.24KB
  369. wechat/chatServer/middleware/islogin.js 864B
  370. wechat/chatServer/models/
  371. wechat/chatServer/models/accountpool.js 362B
  372. wechat/chatServer/models/blog.js 884B
  373. wechat/chatServer/models/blogCategory.js 657B
  374. wechat/chatServer/models/blogLike.js 404B
  375. wechat/chatServer/models/blogTags.js 656B
  376. wechat/chatServer/models/expression.js 268B
  377. wechat/chatServer/models/friendly.js 841B
  378. wechat/chatServer/models/group.js 2.24KB
  379. wechat/chatServer/models/groupNews.js 817B
  380. wechat/chatServer/models/news.js 825B
  381. wechat/chatServer/models/pyqComment.js 1.19KB
  382. wechat/chatServer/models/pyqLike.js 431B
  383. wechat/chatServer/models/pyqNews.js 854B
  384. wechat/chatServer/models/superUser.js 765B
  385. wechat/chatServer/models/systemUser.js 329B
  386. wechat/chatServer/models/user.js 1.98KB
  387. wechat/chatServer/models/validateNews.js 768B
  388. wechat/chatServer/package-lock.json 84.6KB
  389. wechat/chatServer/package.json 629B
  390. wechat/chatServer/pm2.json 130B
  391. wechat/chatServer/public/
  392. wechat/chatServer/public/expression/
  393. wechat/chatServer/public/expression/b站233/
  394. wechat/chatServer/public/expression/b站233/1e94fd9fb7.gif 100.39KB
  395. wechat/chatServer/public/expression/b站233/3bb4529443.gif 79.28KB
  396. wechat/chatServer/public/expression/b站233/423562bf7c.gif 124.18KB
  397. wechat/chatServer/public/expression/b站233/45a715f6e7.gif 84.39KB
  398. wechat/chatServer/public/expression/b站233/55c3e466f1.gif 78.86KB
  399. wechat/chatServer/public/expression/b站233/5bda85b3af.gif 62.89KB
  400. wechat/chatServer/public/expression/b站233/6d8c28ba4f.gif 117.27KB
  401. wechat/chatServer/public/expression/b站233/74adb70d5b.gif 63.27KB
  402. wechat/chatServer/public/expression/b站233/8f0127e6a0.gif 156.4KB
  403. wechat/chatServer/public/expression/b站233/977ed4d908.gif 66.15KB
  404. wechat/chatServer/public/expression/b站233/ac812ae84d.gif 77.7KB
  405. wechat/chatServer/public/expression/b站233/add9356364.gif 78.35KB
  406. wechat/chatServer/public/expression/b站233/d4bafb3867.gif 77.86KB
  407. wechat/chatServer/public/expression/b站233/d83c87951b.gif 121.82KB
  408. wechat/chatServer/public/expression/b站233/db4db66690.gif 53.53KB
  409. wechat/chatServer/public/expression/b站233/f87a698c0f.gif 84.21KB
  410. wechat/chatServer/public/expression/不二呆/
  411. wechat/chatServer/public/expression/不二呆/00.gif 44.16KB
  412. wechat/chatServer/public/expression/不二呆/01.gif 76.43KB
  413. wechat/chatServer/public/expression/不二呆/02.gif 73.22KB
  414. wechat/chatServer/public/expression/不二呆/03.gif 98.7KB
  415. wechat/chatServer/public/expression/不二呆/04.gif 21.25KB
  416. wechat/chatServer/public/expression/不二呆/05.gif 97.88KB
  417. wechat/chatServer/public/expression/不二呆/06.gif 97.19KB
  418. wechat/chatServer/public/expression/不二呆/07.gif 89.28KB
  419. wechat/chatServer/public/expression/不二呆/08.gif 72.56KB
  420. wechat/chatServer/public/expression/不二呆/09.gif 97.18KB
  421. wechat/chatServer/public/expression/不二呆/10.gif 91.88KB
  422. wechat/chatServer/public/expression/不二呆/11.gif 98.79KB
  423. wechat/chatServer/public/expression/不二呆/12.gif 46.05KB
  424. wechat/chatServer/public/expression/不二呆/13.gif 40.31KB
  425. wechat/chatServer/public/expression/不二呆/14.gif 98.16KB
  426. wechat/chatServer/public/expression/不二呆/15.gif 98.78KB
  427. wechat/chatServer/public/expression/不二呆/16.gif 97.74KB
  428. wechat/chatServer/public/expression/不二呆/17.gif 67.47KB
  429. wechat/chatServer/public/expression/不二呆/18.gif 86.84KB
  430. wechat/chatServer/public/expression/不二呆/19.gif 96.14KB
  431. wechat/chatServer/public/expression/不二呆/20.gif 18.82KB
  432. wechat/chatServer/public/expression/不二呆/21.gif 29.5KB
  433. wechat/chatServer/public/expression/不二呆/22.gif 97.5KB
  434. wechat/chatServer/public/expression/不二呆/23.gif 97.95KB
  435. wechat/chatServer/public/expression/二花小可爱/
  436. wechat/chatServer/public/expression/二花小可爱/00.gif 92.63KB
  437. wechat/chatServer/public/expression/二花小可爱/01.gif 78.99KB
  438. wechat/chatServer/public/expression/二花小可爱/02.gif 88.29KB
  439. wechat/chatServer/public/expression/二花小可爱/03.gif 92.27KB
  440. wechat/chatServer/public/expression/二花小可爱/04.gif 95.34KB
  441. wechat/chatServer/public/expression/二花小可爱/05.gif 90.56KB
  442. wechat/chatServer/public/expression/冷兔宝宝/
  443. wechat/chatServer/public/expression/冷兔宝宝/00.gif 74.35KB
  444. wechat/chatServer/public/expression/冷兔宝宝/01.gif 140.11KB
  445. wechat/chatServer/public/expression/冷兔宝宝/02.gif 100.96KB
  446. wechat/chatServer/public/expression/冷兔宝宝/03.gif 103.34KB
  447. wechat/chatServer/public/expression/冷兔宝宝/04.gif 85.84KB
  448. wechat/chatServer/public/expression/冷兔宝宝/05.gif 138.02KB
  449. wechat/chatServer/public/expression/冷兔宝宝/06.gif 128.35KB
  450. wechat/chatServer/public/expression/冷兔宝宝/07.gif 143.67KB
  451. wechat/chatServer/public/expression/冷兔宝宝/08.gif 217.04KB
  452. wechat/chatServer/public/expression/冷兔宝宝/09.gif 86.14KB
  453. wechat/chatServer/public/expression/冷兔宝宝/10.gif 40.11KB
  454. wechat/chatServer/public/expression/冷兔宝宝/11.gif 134.16KB
  455. wechat/chatServer/public/expression/冷兔宝宝/12.gif 79.31KB
  456. wechat/chatServer/public/expression/冷兔宝宝/13.gif 171.65KB
  457. wechat/chatServer/public/expression/冷兔宝宝/14.gif 109.91KB
  458. wechat/chatServer/public/expression/冷兔宝宝/15.gif 153.42KB
  459. wechat/chatServer/public/expression/冷兔宝宝/16.gif 127.77KB
  460. wechat/chatServer/public/expression/冷兔宝宝/17.gif 138.13KB
  461. wechat/chatServer/public/expression/冷兔宝宝/18.gif 144.73KB
  462. wechat/chatServer/public/expression/冷兔宝宝/19.gif 69.88KB
  463. wechat/chatServer/public/expression/冷兔宝宝/20.gif 110.35KB
  464. wechat/chatServer/public/expression/冷兔宝宝/21.gif 79.42KB
  465. wechat/chatServer/public/expression/冷兔宝宝/22.gif 88.47KB
  466. wechat/chatServer/public/expression/冷兔宝宝/23.gif 175.42KB
  467. wechat/chatServer/public/expression/冷兔恋爱篇/
  468. wechat/chatServer/public/expression/冷兔恋爱篇/00.gif 88.22KB
  469. wechat/chatServer/public/expression/冷兔恋爱篇/01.gif 89.38KB
  470. wechat/chatServer/public/expression/冷兔恋爱篇/02.gif 77.87KB
  471. wechat/chatServer/public/expression/冷兔恋爱篇/03.gif 100.02KB
  472. wechat/chatServer/public/expression/冷兔恋爱篇/04.gif 90.17KB
  473. wechat/chatServer/public/expression/冷兔恋爱篇/05.gif 87.21KB
  474. wechat/chatServer/public/expression/冷兔恋爱篇/06.gif 91.97KB
  475. wechat/chatServer/public/expression/冷兔恋爱篇/07.gif 138.95KB
  476. wechat/chatServer/public/expression/冷兔恋爱篇/08.gif 81.28KB
  477. wechat/chatServer/public/expression/冷兔恋爱篇/09.gif 35.71KB
  478. wechat/chatServer/public/expression/冷兔恋爱篇/10.gif 55.59KB
  479. wechat/chatServer/public/expression/冷兔恋爱篇/11.gif 98.02KB
  480. wechat/chatServer/public/expression/冷兔恋爱篇/12.gif 143.23KB
  481. wechat/chatServer/public/expression/冷兔恋爱篇/13.gif 158.78KB
  482. wechat/chatServer/public/expression/冷兔恋爱篇/14.gif 152.96KB
  483. wechat/chatServer/public/expression/冷兔恋爱篇/15.gif 81.26KB
  484. wechat/chatServer/public/expression/小僵/
  485. wechat/chatServer/public/expression/小僵/35496b3702.jpg 28.13KB
  486. wechat/chatServer/public/expression/小僵/52a36759f6.jpg 30.24KB
  487. wechat/chatServer/public/expression/小僵/5dacd0a26f.jpg 40.12KB
  488. wechat/chatServer/public/expression/小僵/652976a400.jpg 38.33KB
  489. wechat/chatServer/public/expression/小僵/6a6b805c67.jpg 29.27KB
  490. wechat/chatServer/public/expression/小僵/7806705e0c.jpg 40.79KB
  491. wechat/chatServer/public/expression/小僵/b773ab5fce.jpg 35.67KB
  492. wechat/chatServer/public/expression/小僵/f00c34470f.jpg 42.07KB
  493. wechat/chatServer/public/expression/小僵/fc214db439.jpg 29.36KB
  494. wechat/chatServer/public/expression/小笨猪/
  495. wechat/chatServer/public/expression/小笨猪/00.gif 86.6KB
  496. wechat/chatServer/public/expression/小笨猪/01.gif 16.87KB
  497. wechat/chatServer/public/expression/小笨猪/02.gif 31.72KB
  498. wechat/chatServer/public/expression/小笨猪/03.gif 14.78KB
  499. wechat/chatServer/public/expression/小笨猪/04.gif 94.27KB
  500. wechat/chatServer/public/expression/小笨猪/05.gif 89.56KB
  501. wechat/chatServer/public/expression/小笨猪/06.gif 14.97KB
  502. wechat/chatServer/public/expression/小笨猪/07.gif 88.89KB
  503. wechat/chatServer/public/expression/文小喵/
  504. wechat/chatServer/public/expression/文小喵/00.gif 99.28KB
  505. wechat/chatServer/public/expression/文小喵/01.gif 99.36KB
  506. wechat/chatServer/public/expression/文小喵/02.gif 98.44KB
  507. wechat/chatServer/public/expression/文小喵/03.gif 98.12KB
  508. wechat/chatServer/public/expression/文小喵/04.gif 99.46KB
  509. wechat/chatServer/public/expression/文小喵/05.gif 98.52KB
  510. wechat/chatServer/public/expression/文小喵/06.gif 98.66KB
  511. wechat/chatServer/public/expression/文小喵/07.gif 94.66KB
  512. wechat/chatServer/public/expression/文小喵/08.gif 98.04KB
  513. wechat/chatServer/public/expression/文小喵/09.gif 98.8KB
  514. wechat/chatServer/public/expression/文小萌/
  515. wechat/chatServer/public/expression/文小萌/00.gif 71.16KB
  516. wechat/chatServer/public/expression/文小萌/01.gif 98.9KB
  517. wechat/chatServer/public/expression/文小萌/02.gif 70.25KB
  518. wechat/chatServer/public/expression/文小萌/03.gif 49.33KB
  519. wechat/chatServer/public/expression/文小萌/04.gif 98.21KB
  520. wechat/chatServer/public/expression/文小萌/05.gif 96.48KB
  521. wechat/chatServer/public/expression/文小萌/06.gif 97.25KB
  522. wechat/chatServer/public/expression/文小萌/07.gif 64.04KB
  523. wechat/chatServer/public/expression/滑稽大法/
  524. wechat/chatServer/public/expression/滑稽大法/002.jpg 20.77KB
  525. wechat/chatServer/public/expression/滑稽大法/01.gif 4.31KB
  526. wechat/chatServer/public/expression/滑稽大法/011.gif 264.47KB
  527. wechat/chatServer/public/expression/滑稽大法/011.jpg 13.71KB
  528. wechat/chatServer/public/expression/滑稽大法/012.gif 14.32KB
  529. wechat/chatServer/public/expression/滑稽大法/012.jpg 7.76KB
  530. wechat/chatServer/public/expression/滑稽大法/013.jpg 17.83KB
  531. wechat/chatServer/public/expression/滑稽大法/014.jpg 43.94KB
  532. wechat/chatServer/public/expression/滑稽大法/015.jpg 5.52KB
  533. wechat/chatServer/public/expression/滑稽大法/02.gif 28.57KB
  534. wechat/chatServer/public/expression/滑稽大法/022.gif 27.88KB
  535. wechat/chatServer/public/expression/滑稽大法/03.gif 46.83KB
  536. wechat/chatServer/public/expression/滑稽大法/032.gif 12.49KB
  537. wechat/chatServer/public/expression/滑稽大法/04.gif 13.15KB
  538. wechat/chatServer/public/expression/滑稽大法/04.jpg 10.26KB
  539. wechat/chatServer/public/expression/滑稽大法/05.gif 54.72KB
  540. wechat/chatServer/public/expression/滑稽大法/052.gif 11.12KB
  541. wechat/chatServer/public/expression/滑稽大法/06.gif 27.82KB
  542. wechat/chatServer/public/expression/滑稽大法/062.gif 359.73KB
  543. wechat/chatServer/public/expression/滑稽大法/07.gif 44.58KB
  544. wechat/chatServer/public/expression/滑稽大法/072.gif 35.4KB
  545. wechat/chatServer/public/expression/滑稽大法/08.gif 14.84KB
  546. wechat/chatServer/public/expression/滑稽大法/082.gif 107.85KB
  547. wechat/chatServer/public/expression/滑稽大法/09.gif 14.66KB
  548. wechat/chatServer/public/expression/滑稽大法/1.jpg 8.21KB
  549. wechat/chatServer/public/expression/滑稽大法/10.gif 31.73KB
  550. wechat/chatServer/public/expression/滑稽大法/10.jpeg 5.27KB
  551. wechat/chatServer/public/expression/滑稽大法/11.gif 23.29KB
  552. wechat/chatServer/public/expression/滑稽大法/11.jpeg 9.77KB
  553. wechat/chatServer/public/expression/滑稽大法/110.gif 327.4KB
  554. wechat/chatServer/public/expression/滑稽大法/110.jpg 28.87KB
  555. wechat/chatServer/public/expression/滑稽大法/1102.gif 87.32KB
  556. wechat/chatServer/public/expression/滑稽大法/111.jpg 13.74KB
  557. wechat/chatServer/public/expression/滑稽大法/112.gif 148.24KB
  558. wechat/chatServer/public/expression/滑稽大法/12.gif 39.34KB
  559. wechat/chatServer/public/expression/滑稽大法/13.gif 31.25KB
  560. wechat/chatServer/public/expression/滑稽大法/13.jpeg 6.9KB
  561. wechat/chatServer/public/expression/滑稽大法/14.gif 20.86KB
  562. wechat/chatServer/public/expression/滑稽大法/14.jpeg 5.22KB
  563. wechat/chatServer/public/expression/滑稽大法/15.gif 10.35KB
  564. wechat/chatServer/public/expression/滑稽大法/15.jpeg 5.28KB
  565. wechat/chatServer/public/expression/滑稽大法/16.gif 180.17KB
  566. wechat/chatServer/public/expression/滑稽大法/17.gif 31.85KB
  567. wechat/chatServer/public/expression/滑稽大法/18.gif 2.97KB
  568. wechat/chatServer/public/expression/滑稽大法/19.gif 17.84KB
  569. wechat/chatServer/public/expression/滑稽大法/19.jpeg 7.02KB
  570. wechat/chatServer/public/expression/滑稽大法/2.gif 54.01KB
  571. wechat/chatServer/public/expression/滑稽大法/20.gif 190.2KB
  572. wechat/chatServer/public/expression/滑稽大法/21.gif 10.34KB
  573. wechat/chatServer/public/expression/滑稽大法/21.jpeg 10.6KB
  574. wechat/chatServer/public/expression/滑稽大法/22.gif 37.86KB
  575. wechat/chatServer/public/expression/滑稽大法/22.jpeg 5.08KB
  576. wechat/chatServer/public/expression/滑稽大法/23.gif 53.26KB
  577. wechat/chatServer/public/expression/滑稽大法/23.jpeg 5.85KB
  578. wechat/chatServer/public/expression/滑稽大法/24.gif 11.3KB
  579. wechat/chatServer/public/expression/滑稽大法/24.jpeg 8.36KB
  580. wechat/chatServer/public/expression/滑稽大法/25.gif 12KB
  581. wechat/chatServer/public/expression/滑稽大法/25.png 6.6KB
  582. wechat/chatServer/public/expression/滑稽大法/26.gif 13.11KB
  583. wechat/chatServer/public/expression/滑稽大法/26.jpeg 7.13KB
  584. wechat/chatServer/public/expression/滑稽大法/27.gif 12.83KB
  585. wechat/chatServer/public/expression/滑稽大法/27.jpeg 5.62KB
  586. wechat/chatServer/public/expression/滑稽大法/28.gif 540.63KB
  587. wechat/chatServer/public/expression/滑稽大法/28.jpeg 5.46KB
  588. wechat/chatServer/public/expression/滑稽大法/29.gif 28KB
  589. wechat/chatServer/public/expression/滑稽大法/29.jpeg 6.34KB
  590. wechat/chatServer/public/expression/滑稽大法/3.jpeg 6.86KB
  591. wechat/chatServer/public/expression/滑稽大法/3.jpg 8.93KB
  592. wechat/chatServer/public/expression/滑稽大法/30.gif 21.99KB
  593. wechat/chatServer/public/expression/滑稽大法/30.jpeg 7.15KB
  594. wechat/chatServer/public/expression/滑稽大法/31.gif 151.02KB
  595. wechat/chatServer/public/expression/滑稽大法/31.jpeg 6.19KB
  596. wechat/chatServer/public/expression/滑稽大法/32.gif 7.12KB
  597. wechat/chatServer/public/expression/滑稽大法/32.jpg 22.94KB
  598. wechat/chatServer/public/expression/滑稽大法/33.gif 45.91KB
  599. wechat/chatServer/public/expression/滑稽大法/34.gif 67.09KB
  600. wechat/chatServer/public/expression/滑稽大法/35.gif 24.18KB
  601. wechat/chatServer/public/expression/滑稽大法/36.gif 83.12KB
  602. wechat/chatServer/public/expression/滑稽大法/4.jpeg 6.79KB
  603. wechat/chatServer/public/expression/滑稽大法/5.jpeg 9.56KB
  604. wechat/chatServer/public/expression/滑稽大法/6.jpeg 5.46KB
  605. wechat/chatServer/public/expression/滑稽大法/7.jpeg 7.74KB
  606. wechat/chatServer/public/expression/滑稽大法/8.jpeg 6.89KB
  607. wechat/chatServer/public/expression/滑稽大法/9.jpeg 9.27KB
  608. wechat/chatServer/public/expression/滑稽大法/hhj.jpg 19.9KB
  609. wechat/chatServer/public/expression/猪肉肉/
  610. wechat/chatServer/public/expression/猪肉肉/00.gif 33.72KB
  611. wechat/chatServer/public/expression/猪肉肉/01.gif 28.6KB
  612. wechat/chatServer/public/expression/猪肉肉/02.gif 37.53KB
  613. wechat/chatServer/public/expression/猪肉肉/03.gif 18.14KB
  614. wechat/chatServer/public/expression/猪肉肉/04.gif 35.59KB
  615. wechat/chatServer/public/expression/猪肉肉/05.gif 95.1KB
  616. wechat/chatServer/public/expression/猪肉肉/06.gif 22.92KB
  617. wechat/chatServer/public/expression/猪肉肉/07.gif 46.07KB
  618. wechat/chatServer/public/expression/猪肉肉/08.gif 38.53KB
  619. wechat/chatServer/public/expression/猪肉肉/09.gif 18.23KB
  620. wechat/chatServer/public/expression/猪肉肉/10.gif 39.54KB
  621. wechat/chatServer/public/expression/猪肉肉/11.gif 42.73KB
  622. wechat/chatServer/public/expression/猪肉肉/12.gif 25.47KB
  623. wechat/chatServer/public/expression/猪肉肉/13.gif 30.06KB
  624. wechat/chatServer/public/expression/猪肉肉/14.gif 29.89KB
  625. wechat/chatServer/public/expression/猪肉肉/15.gif 38.76KB
  626. wechat/chatServer/public/expression/脸红小馒头/
  627. wechat/chatServer/public/expression/脸红小馒头/00.gif 24.62KB
  628. wechat/chatServer/public/expression/脸红小馒头/01.gif 34.82KB
  629. wechat/chatServer/public/expression/脸红小馒头/02.gif 13.92KB
  630. wechat/chatServer/public/expression/脸红小馒头/03.gif 35.95KB
  631. wechat/chatServer/public/expression/脸红小馒头/04.gif 44.86KB
  632. wechat/chatServer/public/expression/脸红小馒头/05.gif 13.59KB
  633. wechat/chatServer/public/expression/脸红小馒头/06.gif 29.98KB
  634. wechat/chatServer/public/expression/脸红小馒头/07.gif 12.71KB
  635. wechat/chatServer/public/expression/脸红小馒头/08.gif 56.57KB
  636. wechat/chatServer/public/expression/脸红小馒头/09.gif 13.3KB
  637. wechat/chatServer/public/expression/脸红小馒头/10.gif 13.36KB
  638. wechat/chatServer/public/expression/脸红小馒头/11.gif 29.1KB
  639. wechat/chatServer/public/expression/脸红小馒头/12.gif 24.06KB
  640. wechat/chatServer/public/expression/蘑菇头/
  641. wechat/chatServer/public/expression/蘑菇头/0544273514.gif 10.28KB
  642. wechat/chatServer/public/expression/蘑菇头/05fe3af3e1.gif 10.81KB
  643. wechat/chatServer/public/expression/蘑菇头/0dfbf9981d.gif 37.29KB
  644. wechat/chatServer/public/expression/蘑菇头/0f70e1837e.gif 97.6KB
  645. wechat/chatServer/public/expression/蘑菇头/1225876777.gif 13.18KB
  646. wechat/chatServer/public/expression/蘑菇头/17b5e17c12.gif 24.73KB
  647. wechat/chatServer/public/expression/蘑菇头/1bb55024cd.gif 22.06KB
  648. wechat/chatServer/public/expression/蘑菇头/251deaf614.gif 96.34KB
  649. wechat/chatServer/public/expression/蘑菇头/36ddde149a.gif 20.52KB
  650. wechat/chatServer/public/expression/蘑菇头/378cdb75e0.gif 18.74KB
  651. wechat/chatServer/public/expression/蘑菇头/3c2305f104.gif 12.7KB
  652. wechat/chatServer/public/expression/蘑菇头/3d492f7162.gif 11.7KB
  653. wechat/chatServer/public/expression/蘑菇头/3f80cc9f1b.gif 43.96KB
  654. wechat/chatServer/public/expression/蘑菇头/431fbc3e82.gif 19.28KB
  655. wechat/chatServer/public/expression/蘑菇头/43979f86fb.gif 63.24KB
  656. wechat/chatServer/public/expression/蘑菇头/43cd0d5201.gif 36.09KB
  657. wechat/chatServer/public/expression/蘑菇头/46bf5a6711.gif 17.09KB
  658. wechat/chatServer/public/expression/蘑菇头/4bb773e073.gif 45.76KB
  659. wechat/chatServer/public/expression/蘑菇头/4cf49769e6.gif 10.73KB
  660. wechat/chatServer/public/expression/蘑菇头/57de2e5e81.gif 19.25KB
  661. wechat/chatServer/public/expression/蘑菇头/58c0b094e3.gif 11.6KB
  662. wechat/chatServer/public/expression/蘑菇头/5c9d8b10f6.gif 45.87KB
  663. wechat/chatServer/public/expression/蘑菇头/63dbdbada7.gif 104.32KB
  664. wechat/chatServer/public/expression/蘑菇头/6c56ad9fc2.gif 22.4KB
  665. wechat/chatServer/public/expression/蘑菇头/7347b853ee.gif 73.36KB
  666. wechat/chatServer/public/expression/蘑菇头/7574a2f18a.gif 228.25KB
  667. wechat/chatServer/public/expression/蘑菇头/760aea047e.gif 33.51KB
  668. wechat/chatServer/public/expression/蘑菇头/77abaedbc4.gif 127.78KB
  669. wechat/chatServer/public/expression/蘑菇头/78d94a57ba.gif 10.65KB
  670. wechat/chatServer/public/expression/蘑菇头/8fd3261960.gif 11.72KB
  671. wechat/chatServer/public/expression/蘑菇头/91a2172d94.gif 14.21KB
  672. wechat/chatServer/public/expression/蘑菇头/92ee4cb316.gif 19.15KB
  673. wechat/chatServer/public/expression/蘑菇头/92fd267bc9.gif 9.37KB
  674. wechat/chatServer/public/expression/蘑菇头/93f3242fdc.gif 12.91KB
  675. wechat/chatServer/public/expression/蘑菇头/968e2fd239.gif 50.72KB
  676. wechat/chatServer/public/expression/蘑菇头/9c895074de.gif 114.54KB
  677. wechat/chatServer/public/expression/蘑菇头/9c97e8c4da.gif 22.91KB
  678. wechat/chatServer/public/expression/蘑菇头/a0772560a8.gif 20.27KB
  679. wechat/chatServer/public/expression/蘑菇头/a1ffafd43c.gif 72.5KB
  680. wechat/chatServer/public/expression/蘑菇头/a30539037c.gif 15.45KB
  681. wechat/chatServer/public/expression/蘑菇头/a31d460915.gif 70.69KB
  682. wechat/chatServer/public/expression/蘑菇头/a398436916.gif 228.59KB
  683. wechat/chatServer/public/expression/蘑菇头/b081b6ae72.gif 17.43KB
  684. wechat/chatServer/public/expression/蘑菇头/b9186161ee.gif 25.9KB
  685. wechat/chatServer/public/expression/蘑菇头/c27e0da416.gif 14.01KB
  686. wechat/chatServer/public/expression/蘑菇头/c4b57f3cc5.gif 23KB
  687. wechat/chatServer/public/expression/蘑菇头/cba421d6c6.gif 19.19KB
  688. wechat/chatServer/public/expression/蘑菇头/cde85e4862.gif 24.12KB
  689. wechat/chatServer/public/expression/蘑菇头/d64def6671.jpg 37.3KB
  690. wechat/chatServer/public/expression/蘑菇头/d89a5dd542.gif 20.42KB
  691. wechat/chatServer/public/expression/蘑菇头/d920ff9608.gif 14.31KB
  692. wechat/chatServer/public/expression/蘑菇头/e2ec4f17bd.gif 44.38KB
  693. wechat/chatServer/public/expression/蘑菇头/e61b10830c.gif 15.72KB
  694. wechat/chatServer/public/expression/蘑菇头/f51f40316f.gif 12.66KB
  695. wechat/chatServer/public/expression/蘑菇头/fc4a34732b.gif 24.34KB
  696. wechat/chatServer/public/expression/野萌君/
  697. wechat/chatServer/public/expression/野萌君/194a045773.gif 38.89KB
  698. wechat/chatServer/public/expression/野萌君/1aa42f7518.gif 39.5KB
  699. wechat/chatServer/public/expression/野萌君/227170ae62.gif 42.03KB
  700. wechat/chatServer/public/expression/野萌君/3319e0b4be.gif 81.86KB
  701. wechat/chatServer/public/expression/野萌君/38009c8613.gif 108.75KB
  702. wechat/chatServer/public/expression/野萌君/46d76799b0.gif 37KB
  703. wechat/chatServer/public/expression/野萌君/50a3053f7f.gif 49.97KB
  704. wechat/chatServer/public/expression/野萌君/546f7b2b57.gif 78.47KB
  705. wechat/chatServer/public/expression/野萌君/6f2b3e0c7d.gif 30.97KB
  706. wechat/chatServer/public/expression/野萌君/74439bacea.gif 19.94KB
  707. wechat/chatServer/public/expression/野萌君/781702175f.gif 106.6KB
  708. wechat/chatServer/public/expression/野萌君/7b3595c595.gif 12.25KB
  709. wechat/chatServer/public/expression/野萌君/901a026cee.gif 115.24KB
  710. wechat/chatServer/public/expression/野萌君/a9ed5cb0fc.gif 32.57KB
  711. wechat/chatServer/public/expression/野萌君/ab60c8ea40.gif 18.13KB
  712. wechat/chatServer/public/expression/野萌君/b132c449a4.gif 27.82KB
  713. wechat/chatServer/public/expression/野萌君/c1073b27a9.gif 61.16KB
  714. wechat/chatServer/public/expression/野萌君/cb614af40e.gif 33.6KB
  715. wechat/chatServer/public/expression/野萌君/cbb1c9bd0d.gif 98.66KB
  716. wechat/chatServer/public/expression/野萌君/cd4d40579c.gif 19.39KB
  717. wechat/chatServer/public/expression/野萌君/d2af089938.gif 53.05KB
  718. wechat/chatServer/public/expression/野萌君/e68d250440.gif 19.35KB
  719. wechat/chatServer/public/expression/野萌君/edd4d0a3f3.gif 46.48KB
  720. wechat/chatServer/public/expression/野萌君/f61e5d9c99.gif 39.68KB
  721. wechat/chatServer/public/face/
  722. wechat/chatServer/public/face/face1.jpg 26.62KB
  723. wechat/chatServer/public/face/face10.jpg 44.91KB
  724. wechat/chatServer/public/face/face11.jpg 41.16KB
  725. wechat/chatServer/public/face/face12.jpg 38.66KB
  726. wechat/chatServer/public/face/face13.jpg 29.28KB
  727. wechat/chatServer/public/face/face14.jpg 27.74KB
  728. wechat/chatServer/public/face/face15.jpg 31.06KB
  729. wechat/chatServer/public/face/face16.jpg 27.74KB
  730. wechat/chatServer/public/face/face17.jpg 25.34KB
  731. wechat/chatServer/public/face/face18.jpg 47.1KB
  732. wechat/chatServer/public/face/face19.jpg 33.44KB
  733. wechat/chatServer/public/face/face2.jpg 52.08KB
  734. wechat/chatServer/public/face/face20.jpg 40.23KB
  735. wechat/chatServer/public/face/face21.jpg 38.16KB
  736. wechat/chatServer/public/face/face22.jpg 33.44KB
  737. wechat/chatServer/public/face/face3.jpg 24.36KB
  738. wechat/chatServer/public/face/face4.jpg 33.57KB
  739. wechat/chatServer/public/face/face5.jpg 40.52KB
  740. wechat/chatServer/public/face/face6.jpg 44.61KB
  741. wechat/chatServer/public/face/face7.jpg 39.56KB
  742. wechat/chatServer/public/face/face8.jpg 39.62KB
  743. wechat/chatServer/public/face/face9.jpg 41.78KB
  744. wechat/chatServer/public/face/ronaldo1.jpg 35.45KB
  745. wechat/chatServer/public/img/
  746. wechat/chatServer/public/img/0052.jpg 135.52KB
  747. wechat/chatServer/public/img/0055.jpg 134.06KB
  748. wechat/chatServer/public/img/0072.jpg 141.1KB
  749. wechat/chatServer/public/img/0073.jpg 96.06KB
  750. wechat/chatServer/public/img/1.jpg 21.26KB
  751. wechat/chatServer/public/img/10.jpg 27.45KB
  752. wechat/chatServer/public/img/11.jpg 35.31KB
  753. wechat/chatServer/public/img/12.jpg 56.14KB
  754. wechat/chatServer/public/img/13.jpg 56.99KB
  755. wechat/chatServer/public/img/14.jpg 10.82KB
  756. wechat/chatServer/public/img/15.jpg 14.11KB
  757. wechat/chatServer/public/img/16.jpg 35.42KB
  758. wechat/chatServer/public/img/17.jpg 33.33KB
  759. wechat/chatServer/public/img/2.jpg 23.95KB
  760. wechat/chatServer/public/img/20.jpg 20.98KB
  761. wechat/chatServer/public/img/21.jpg 18.79KB
  762. wechat/chatServer/public/img/23.jpg 46.49KB
  763. wechat/chatServer/public/img/24.jpg 49.45KB
  764. wechat/chatServer/public/img/25.jpg 56.6KB
  765. wechat/chatServer/public/img/26.jpg 68.13KB
  766. wechat/chatServer/public/img/27.jpg 54.05KB
  767. wechat/chatServer/public/img/28.jpg 58.57KB
  768. wechat/chatServer/public/img/3.jpg 20.03KB
  769. wechat/chatServer/public/img/4.jpg 29.75KB
  770. wechat/chatServer/public/img/5.jpg 37.01KB
  771. wechat/chatServer/public/img/6.jpg 26.69KB
  772. wechat/chatServer/public/img/7.jpg 30.34KB
  773. wechat/chatServer/public/img/8.jpg 20.5KB
  774. wechat/chatServer/public/img/9.jpg 28.77KB
  775. wechat/chatServer/public/img/cover.jpg 26.27KB
  776. wechat/chatServer/public/img/cover1.jpg 27.9KB
  777. wechat/chatServer/public/img/picture.png 21.25KB
  778. wechat/chatServer/public/img/vchat.jpg 127.92KB
  779. wechat/chatServer/public/img/vchat.png 2.51KB
  780. wechat/chatServer/public/img/wallpaper.jpg 39.26KB
  781. wechat/chatServer/public/img/wallpaper1.jpg 132.52KB
  782. wechat/chatServer/public/img/xiang.jpg 78.59KB
  783. wechat/chatServer/public/img/zwsj5.png 5.72KB
  784. wechat/chatServer/public/uploads/
  785. wechat/chatServer/public/uploads/2019-10-09/
  786. wechat/chatServer/public/uploads/2019-10-09/f-1570609572967-u=1791524184,3229217328&fm=26&gp=0.jpg 31.85KB
  787. wechat/chatServer/public/uploads/2019-11-10/
  788. wechat/chatServer/public/uploads/2019-11-10/f-1573390856438-f1573390856092.png 304.2KB
  789. wechat/chatServer/public/uploads/2019-11-21/
  790. wechat/chatServer/public/uploads/2019-11-21/f-1574322956848-0AF73108772D55E60AD6538846951491.jpg 55.39KB
  791. wechat/chatServer/public/uploads/2020-04-07/
  792. wechat/chatServer/public/uploads/2020-04-07/file-chat-1715507a808-1.jpg 541.97KB
  793. wechat/chatServer/public/uploads/2020-04-07/file-chat-171550f6850-04.jpg 46.31KB
  794. wechat/chatServer/public/uploads/2020-04-07/file-chat-171550ffc89-1.jpg 541.97KB
  795. wechat/chatServer/public/uploads/2020-04-07/file-chat-17155119d5b-1.jpg 541.97KB
  796. wechat/chatServer/routes/
  797. wechat/chatServer/routes/blog.js 427B
  798. wechat/chatServer/routes/friendly.js 352B
  799. wechat/chatServer/routes/group.js 472B
  800. wechat/chatServer/routes/groupNews.js 355B
  801. wechat/chatServer/routes/news.js 359B
  802. wechat/chatServer/routes/pyq.js 802B
  803. wechat/chatServer/routes/superUser.js 308B
  804. wechat/chatServer/routes/sys.js 587B
  805. wechat/chatServer/routes/user.js 1.28KB
  806. wechat/chatServer/routes/validateNews.js 237B
  807. wechat/chatServer/utils/
  808. wechat/chatServer/utils/auth.js 1.09KB
  809. wechat/chatServer/utils/config.js 1.63KB
  810. wechat/chatServer/utils/connectDB.js 314B
  811. wechat/chatServer/utils/cvCode.js 337B
  812. wechat/chatServer/utils/index.js 2.16KB
  813. wechat/chatServer/utils/socket.js 71B
  814. wechat/chatServer/utils/upFile.js 992B
  815. wechat/chatServer/views/
  816. wechat/chatServer/views/error.jade 84B
  817. wechat/chatServer/views/index.jade 66B
  818. wechat/chatServer/views/layout.jade 125B
  819. wechat/document/
  820. wechat/document/clean.png 284.91KB
  821. wechat/document/resources/
  822. wechat/document/resources/qqgroup.jpg 46.19KB
  823. wechat/document/screenshots/
  824. wechat/document/screenshots/m-aside.png 22.16KB
  825. wechat/document/screenshots/m-chat.png 36.98KB
  826. wechat/document/screenshots/m-conversationlist.png 20.79KB
  827. wechat/document/screenshots/m-login.png 43.8KB
  828. wechat/document/screenshots/m-picreview.png 46.42KB
  829. wechat/document/screenshots/m-pyq.png 48.75KB
  830. wechat/document/screenshots/m-theme.png 17.01KB
  831. wechat/document/screenshots/p-chat1.png 54.89KB
  832. wechat/document/screenshots/p-chat2.png 81.84KB
  833. wechat/document/screenshots/p-home.png 53.17KB
  834. wechat/document/screenshots/p-notify.png 57.55KB
  835. wechat/document/screenshots/p-personcenter.png 59KB
  836. wechat/document/screenshots/p-pyq1.jpg 67.99KB
  837. wechat/document/screenshots/p-pyq2.png 43.94KB
  838. wechat/document/screenshots/p-schedule1.png 44.5KB
  839. wechat/document/screenshots/p-schedule2.png 56.7KB
  840. wechat/document/screenshots/p-theme.png 58.55KB
  841. wechat/document/客户端.png 53.49KB
  842. wechat/document/接口文档设计/
  843. wechat/document/接口文档设计/friend相关接口.md 965B
  844. wechat/document/接口文档设计/group&groupUser.md 741B
  845. wechat/document/接口文档设计/groupNews.md 704B
  846. wechat/document/接口文档设计/index.md 1.72KB
  847. wechat/document/接口文档设计/news相关接口.md 1.43KB
  848. wechat/document/接口文档设计/pyq相关接口.md 3.14KB
  849. wechat/document/接口文档设计/system相关接口.md 465B
  850. wechat/document/接口文档设计/user相关接口.md 4.22KB
  851. wechat/document/普通用户功能设计0404.png 83.6KB
  852. wechat/document/系统功能图.png 82.3KB
  853. wechat/document/系统管理员功能设计0404.png 45.81KB
  854. wechat/ts-server/
  855. wechat/ts-server/.gitignore 165B
  856. wechat/ts-server/package-lock.json 78.89KB
  857. wechat/ts-server/package.json 834B
  858. wechat/ts-server/pm2.json 138B
  859. wechat/ts-server/src/
  860. wechat/ts-server/src/controller/
  861. wechat/ts-server/src/controller/user.ts 495B
  862. wechat/ts-server/src/index.ts 760B
  863. wechat/ts-server/src/middleware/
  864. wechat/ts-server/src/middleware/auth.ts 173B
  865. wechat/ts-server/src/middleware/error.ts 173B
  866. wechat/ts-server/src/middleware/index.ts 142B
  867. wechat/ts-server/src/models/
  868. wechat/ts-server/src/models/user.ts 2.26KB
  869. wechat/ts-server/src/public/
  870. wechat/ts-server/src/public/images/
  871. wechat/ts-server/src/public/images/1.jpg 111.44KB
  872. wechat/ts-server/src/routers/
  873. wechat/ts-server/src/routers/user.ts 313B
  874. wechat/ts-server/src/utils/
  875. wechat/ts-server/src/utils/connectDB.ts 368B
  876. wechat/ts-server/tsconfig.json 5.21KB
0评论
提交 加载更多评论
其他资源 C/C++ 中的 LLM 推理
描述 主要目标llama.cpp是在各种硬件(本地和云端)上以最少的设置和最先进的性能实现 LLM 推理。 纯 C/C++ 实现,无任何依赖项 Apple 芯片是一流的——通过 ARM NEON、Accelerate 和 Metal 框架进行了优化 AVX、AVX2 和 AVX512 支持 x86 架构 1.5 位、2 位、3 位、4 位、5 位、6 位和 8 位整数量化,可加快推理速度并减少内存使用 用于在 NVIDIA GPU 上运行 LLM 的自定义 CUDA 内核(通过 HIP 支持 AMD GPU) Vulkan 和 SYCL 后端支持 CPU+GPU 混合推理,部分加速大于 VRAM 总容量的模型
rxtx项目运行资源 x64 jar 包
rxtx项目运行资源 x64 jar 包
这是一个简易的PS软件,使用VC6.0编写 数字图像处理实验编写的软件
这是一个简易的PS软件,使用VC6.0编写。数字图像处理实验编写的软件
SecGPT网络安全大模型
模型介绍 SecGPT的愿景是将人工智能技术引入网络安全领域,以提高网络防御的效率和效果。其使命是推动网络安全智能化,为社会提供更安全的数字生活环境。 SecGPT可以作为基座安全模型,用于探索各种网络安全任务。以下是对SecGPT在网络安全任务中可能应用的进一步探讨: 1. 漏洞分析: SecGPT可以与安全研究人员或开发团队进行多轮对话,共同分析和审查应用程序或系统中的潜在漏洞。它可以帮助识别和理解漏洞的性质、潜在影响以及可能的修复方法。 2. 溯源分析: 在网络入侵事件调查中,SecGPT可以与调查员合作,协助分析网络流量、日志和事件记录,以追踪攻击者的活动路径,从而支持安全溯源分析。 3. 流量分析: SecGPT可以分析网络流量数据,识别异常流量模式,帮助检测潜在的网络攻击或入侵行为,并提供应对这些行为的建议。 4. 攻击研判: 在面对未知攻击时,SecGPT可以与安全团队一起进行多轮对话,共同分析攻击的特征、模式和可能的来源,以便更好地理解和应对威胁。
SecGPT网络安全大模型
一个联邦平均框架,并基于ST-GCN模型进行实验,在Kinetics和NTU60数据集上验证
通信模型: NOTE:分成两个循环: 客户端 listen -> 接收模型 -> 训练一个epoch -> 发起通信 -> 上传模型 -> (重复)listen 服务器 发起通信 -> 下放模型 -> listen -> 接收模型 -> 聚合 -> (重复)发起通信
Lsky Pro 是一个用于在线上传、管理图片的图床程序
源码下载地址:00818.cn Lsky Pro 是一个用于在线上传、管理图片的图床程序,中文名:兰空图床,你可以将它作为自己的云上相册,亦可以当作你的写作贴图库。 该程序的最初版本诞生于2017年10月,由ThinkPHP 5框架精心打造而成。在历经数次迭代升级之后,终于在2022年3月迎来了全新的2.0版本。 Lsky Pro具备广泛的存储支持能力,不仅包括本地存储,还涵盖了多种第三方云存储服务,如AWS S3、阿里云OSS、腾讯云COS、七牛云、又拍云、SFTP、FTP、WebDav以及Minio等。
Aristosoft more Windows
More Windows 是一款视频驱动程序,可为您提供大的可滚动功能 现有 VGA 或 EGA 系统上的虚拟桌面。它提供了几个 虚拟桌面大小,包括纵向和横向 - 可能是 对于不同类型的任务更可取。它还提供一份“论文 白色“单色模式,使用较少的内存并具有”鸟” 眼睛“视图。其他视频模式将消耗额外的扩展内存。 这是搬运过来的,国外的网站下载太慢了
spring-test
spring-test