Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-im
提交
43d10d6c
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看板
提交
43d10d6c
编写于
6月 20, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增 unipush 的channel相关配置,防止应用被避免被限量推送、静默推送(静音且需下拉系统通知栏才可见通知内容)
上级
454d67ad
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
22 addition
and
4 deletion
+22
-4
common/config.js
common/config.js
+11
-0
sdk/init/index.js
sdk/init/index.js
+4
-2
sdk/init/msgEvent.js
sdk/init/msgEvent.js
+7
-2
未找到文件。
common/config.js
0 → 100644
浏览文件 @
43d10d6c
export
default
{
uniPush
:
{
// 消息渠道设置,避免被限量推送、静默推送(静音且需下拉系统通知栏才可见通知内容)详情文档:https://doc.dcloud.net.cn/uniCloud/uni-cloud-push/api.html#channel
channel
:{
// 渠道id
id
:
"
114240
"
,
// 消息渠道描述,会显示在手机系统关于当前应用的通知设置中
desc
:
"
客服消息
"
}
}
}
\ No newline at end of file
sdk/init/index.js
浏览文件 @
43d10d6c
import
config
from
'
@/uni_modules/uni-im/common/config.js
'
;
import
$state
from
'
@/uni_modules/uni-im/sdk/state/index.js
'
;
import
$methods
from
'
@/uni_modules/uni-im/sdk/methods/index.js
'
;
import
{
init
as
initIndexDB
}
from
'
@/uni_modules/uni-im/sdk/ext/indexDB.js
'
;
...
...
@@ -15,6 +16,7 @@ import onSocketStateChange from './onSocketStateChange'
import
imData
from
'
./imData
'
import
onlyOneWebTab
from
'
./onlyOneWebTab
'
// #ifdef APP
// import sqlite from './sqlite.js'
// #endif
...
...
@@ -165,8 +167,8 @@ export default async function (initParam) {
plugin
.
setCustomPushChannel
(
{
// soundName: "pushsound",
channelId
:
"
114240
"
,
channelDesc
:
"
客服消息
"
,
channelId
:
config
.
uniPush
.
channel
.
id
,
channelDesc
:
config
.
uniPush
.
channel
.
desc
,
enableLights
:
true
,
enableVibration
:
true
,
importance
:
4
,
...
...
sdk/init/msgEvent.js
浏览文件 @
43d10d6c
import
config
from
'
@/uni_modules/uni-im/common/config.js
'
;
import
$utils
from
'
@/uni_modules/uni-im/sdk/utils/index.js
'
;
import
$extensions
from
'
@/uni_modules/uni-im/sdk/methods/extensions.js
'
;
import
$state
from
'
../state/index.js
'
;
...
...
@@ -193,9 +194,13 @@ msgEvent.onMsg(async res=>{
icon
=
downloadFileRes
[
1
]?.
tempFilePath
}
}
plus
.
push
.
createMessage
(
content
,
payload
,
{
uni
.
createPushMessage
(
{
title
,
icon
content
,
payload
,
icon
,
channelId
:
config
.
uniPush
.
channel
.
id
,
category
:
'
IM
'
,
})
}
else
if
(
conversation_id
!=
$state
.
currentConversationId
)
{
// uni.showToast({
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录