Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-im
提交
1a4fb12c
U
uni-im
项目概览
DCloud
/
uni-im
通知
3
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-im
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
1a4fb12c
编写于
11月 11, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新 新增支持通过group_id查云端会话
上级
fcd4afd8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
10 addition
and
3 deletion
+10
-3
sdk/state/Conversation.class.js
sdk/state/Conversation.class.js
+4
-2
uniCloud/cloudfunctions/uni-im-co/conversation.js
uniCloud/cloudfunctions/uni-im-co/conversation.js
+6
-1
未找到文件。
sdk/state/Conversation.class.js
浏览文件 @
1a4fb12c
...
...
@@ -198,7 +198,8 @@ export default class Conversation extends CloudData {
// 已有会话id的情况下,不设置更新时间条件
let
maxLastMsgCreateTime
=
false
;
let
skip
=
0
;
if
(
!
conversation_id
)
{
const
group_id
=
param
?.
group_id
if
(
!
conversation_id
&&
!
group_id
)
{
// 会话列表的总数
const
conversationCount
=
conversationDatas
.
length
if
(
conversationCount
!==
0
){
...
...
@@ -226,7 +227,8 @@ export default class Conversation extends CloudData {
skip
,
// 是否要区分是否为置顶会话
distinguishPinned
:
loadMoreType
===
'
all
'
,
type
:
loadMoreType
type
:
loadMoreType
,
group_id
})
if
(
!
conversation_id
)
{
this
.
loadMore
.
lastConversation
=
{[
loadMoreType
]:
res
.
data
[
res
.
data
.
length
-
1
]}
...
...
uniCloud/cloudfunctions/uni-im-co/conversation.js
浏览文件 @
1a4fb12c
...
...
@@ -20,6 +20,8 @@ async function getConversationList({
conversation_id
=
false
,
// 是否要区分是否为置顶
distinguishPinned
=
false
,
// 群id
group_id
=
false
,
sort
=
{
pinned
:
-
1
,
last_msg_create_time
:
-
1
,
...
...
@@ -66,7 +68,10 @@ async function getConversationList({
// 如果指定了会话id,则只查询指定的会话
if
(
conversation_id
)
{
matchObj
.
id
=
conversation_id
}
else
{
}
else
if
(
group_id
)
{
matchObj
.
group_id
=
group_id
}
else
{
// 默认不查询置顶会话
if
(
distinguishPinned
)
{
matchObj
.
pinned
=
dbCmd
.
neq
(
true
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录