Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-im
提交
9364c299
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看板
提交
9364c299
编写于
11月 07, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新 修复部分情况下,视频封面获取失败的问题
上级
be19bd1f
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
13 addition
and
18 deletion
+13
-18
common/config.js
common/config.js
+4
-4
components/uni-im-msg/types/video.vue
components/uni-im-msg/types/video.vue
+9
-14
未找到文件。
common/config.js
浏览文件 @
9364c299
...
@@ -2,17 +2,17 @@ export default {
...
@@ -2,17 +2,17 @@ export default {
// 云存储服务商
// 云存储服务商
cloudFile
:{
cloudFile
:{
// 云存储服务商,支持:aliyun、tencent、qiniu
// 云存储服务商,支持:aliyun、tencent、qiniu
provider
:
'
qiniu
'
,
provider
:
'
aliyun
'
,
},
},
uniPush
:
{
uniPush
:
{
// 消息渠道设置,避免被限量推送、静默推送(静音且需下拉系统通知栏才可见通知内容)详情文档:https://doc.dcloud.net.cn/uniCloud/uni-cloud-push/api.html#channel
// 消息渠道设置,避免被限量推送、静默推送(静音且需下拉系统通知栏才可见通知内容)详情文档:https://doc.dcloud.net.cn/uniCloud/uni-cloud-push/api.html#channel
channel
:{
channel
:{
// 渠道id
// 渠道id
id
:
"
114240
"
,
id
:
""
,
// 消息渠道描述,会显示在手机系统关于当前应用的通知设置中
// 消息渠道描述,会显示在手机系统关于当前应用的通知设置中
desc
:
"
客服消息
"
desc
:
""
}
}
},
},
// web端绑定的域名,用于生成二维码等
// web端绑定的域名,用于生成二维码等
domain
:
'
http
s://im.dcloud.net.cn
'
,
domain
:
'
http
://localhost:8080/
'
,
}
}
\ No newline at end of file
components/uni-im-msg/types/video.vue
浏览文件 @
9364c299
...
@@ -58,21 +58,16 @@
...
@@ -58,21 +58,16 @@
this
.
videoPoster
=
'
/uni_modules/uni-im/static/msg/video-uploading.gif
'
this
.
videoPoster
=
'
/uni_modules/uni-im/static/msg/video-uploading.gif
'
// #endif
// #endif
}
else
{
}
else
{
// 文件存储的服务商
// 如果链接带?号则加&否则加?
const
{
provider
}
=
config
.
cloudFile
this
.
videoPoster
=
this
.
videoUrl
+
(
this
.
videoUrl
.
indexOf
(
'
?
'
)
>
-
1
?
'
&
'
:
'
?
'
)
switch
(
provider
){
// 根据文件存储的服务商,传不同的参数获取视频封面
case
'
aliyun
'
:
const
paramObj
=
{
this
.
videoPoster
=
this
.
videoUrl
+
'
?x-oss-process=video/snapshot,t_1000,f_jpg,w_200,m_fast,ar_auto
'
aliyun
:
'
x-oss-process=video/snapshot,t_0,f_jpg,w_200,m_fast,ar_auto
'
,
break
;
tencent
:
'
imageView2/0/w/200
'
,
case
'
tencent
'
:
qiniu
:
'
vframe/jpg/offset/0/w/200
'
this
.
videoPoster
=
this
.
videoUrl
+
'
?imageView2/0/w/200
'
break
;
case
'
qiniu
'
:
this
.
videoPoster
=
this
.
videoUrl
+
'
?vframe/jpg/offset/1/w/200
'
break
;
default
:
break
;
}
}
this
.
videoPoster
+=
paramObj
[
config
.
cloudFile
.
provider
]
console
.
log
(
'
this.videoPoster
'
,
this
.
videoPoster
);
}
}
},
},
deep
:
true
,
deep
:
true
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录