feat(chat): 添加私信功能和WebSocket实时通信

- 集成WebSocket管理器,支持心跳、自动重连、消息队列
- 实现私信相关API接口,包括会话列表、历史消息、已读标记等
- 添加聊天页面和会话列表页面,支持实时消息收发
- 配置地图权限和腾讯地图SDK用于酒局定位功能
- 修改应用名称为"喝酒了么"并更新应用描述
- 在App.vue中初始化WebSocket连接和私信功能
- 添加详细的私信模块接口文档和Mock数据
- 优化单图片动态高度计算和预加载逻辑
This commit is contained in:
cg
2026-07-21 21:27:01 +08:00
parent 0332aabba0
commit eaa0d7101f
14 changed files with 2112 additions and 38 deletions
+18 -4
View File
@@ -1,7 +1,7 @@
{
"name" : "干杯日记",
"name" : "喝酒了么",
"appid" : "__UNI__871D23D",
"description" : "让每一杯酒都有迹可循 - 干杯日记",
"description" : "让每一杯酒都有迹可循",
"versionName" : "1.0.0",
"versionCode" : "100",
"transformPx" : false,
@@ -41,7 +41,12 @@
"minified" : true
},
"usingComponents" : true,
"permission" : {},
"requiredPrivateInfos" : ["chooseLocation", "getLocation"],
"permission" : {
"scope.userLocation" : {
"desc" : "用于选择酒局地点和导航"
}
},
"optimization" : {
"subPackages" : true
}
@@ -55,5 +60,14 @@
"mp-toutiao" : {
"usingComponents" : true
},
"vueVersion" : "3"
"vueVersion" : "3",
"h5" : {
"sdkConfigs" : {
"maps" : {
"tencent" : {
"key" : "P54BZ-HDSYL-L7YPL-MJ2J7-FBNEQ-LPBEO"
}
}
}
}
}