Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
19611c64
提交
19611c64
编写于
10月 23, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dd service
上级
f5edfdc0
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
36 行增加
和
36 行删除
+36
-36
DingTalkService.ts
src/ibiz-core/third-party-service/DingTalkService.ts
+36
-36
未找到文件。
src/ibiz-core/third-party-service/DingTalkService.ts
浏览文件 @
19611c64
...
...
@@ -98,22 +98,24 @@ export class DingTalkService {
this
.
$isInit
=
true
;
this
.
dd_ready
();
});
dd
.
config
({
agentId
:
access_token
.
agentId
,
// 必填,微应用ID
corpId
:
access_token
.
corpId
,
//必填,企业ID
timeStamp
:
access_token
.
timeStamp
,
// 必填,生成签名的时间戳
nonceStr
:
access_token
.
nonceStr
,
// 必填,生成签名的随机串
signature
:
access_token
.
signature
,
// 必填,签名
type
:
0
,
//选填。0表示微应用的jsapi,1表示服务窗的jsapi;不填默认为0。该参数从dingtalk.js的0.8.3版本开始支持
jsApiList
:
[
"device.audio.startRecord"
,
"device.audio.stopRecord"
,
"device.audio.onRecordEnd"
,
"device.audio.translateVoice"
,
],
// 必填,需要使用的jsapi列表,注意:不要带dd。
});
if
(
access_token
)
{
dd
.
config
({
agentId
:
access_token
.
agentId
,
// 必填,微应用ID
corpId
:
access_token
.
corpId
,
//必填,企业ID
timeStamp
:
access_token
.
timeStamp
,
// 必填,生成签名的时间戳
nonceStr
:
access_token
.
nonceStr
,
// 必填,生成签名的随机串
signature
:
access_token
.
signature
,
// 必填,签名
type
:
0
,
//选填。0表示微应用的jsapi,1表示服务窗的jsapi;不填默认为0。该参数从dingtalk.js的0.8.3版本开始支持
jsApiList
:
[
"device.audio.startRecord"
,
"device.audio.stopRecord"
,
"device.audio.onRecordEnd"
,
"device.audio.translateVoice"
,
],
// 必填,需要使用的jsapi列表,注意:不要带dd。
});
}
dd
.
error
((
err
:
any
)
=>
{
alert
(
`dd加载错误:
${
JSON
.
stringify
(
err
)}
`
);
//
alert(`dd加载错误:${JSON.stringify(err)}`);
});
});
}
...
...
@@ -154,12 +156,13 @@ export class DingTalkService {
);
resolve
(
response
.
data
);
}
else
{
resolve
(
null
);
resolve
(
response
);
}
})
.
catch
((
response
:
any
)
=>
{
console
.
error
(
response
);
reject
(
null
);
// alert("sign"+JSON.stringify(response));
reject
(
response
);
});
});
}
...
...
@@ -211,20 +214,17 @@ export class DingTalkService {
*
* @memberof DingTalkService
*/
private
startRecord
()
{
dd
.
device
.
audio
.
onRecordEnd
({
onSuccess
:
(
res
:
any
)
=>
{
res
.
duration
;
// 返回音频的时长,单位:秒
},
onFail
:
(
err
:
any
)
=>
{
},
});
this
.
dd
.
device
.
audio
.
startRecord
({
onSuccess
:
()
=>
{
//支持最长为300秒(包括)的音频录制,默认60秒(包括)。
},
onFail
:
(
err
:
any
)
=>
{
alert
(
JSON
.
stringify
(
err
));
},
private
startRecord
():
Promise
<
any
>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
dd
.
device
.
audio
.
startRecord
({
onSuccess
:
()
=>
{
resolve
(
true
)
//支持最长为300秒(包括)的音频录制,默认60秒(包括)。
},
onFail
:
()
=>
{
resolve
(
false
)
},
});
});
}
...
...
@@ -242,7 +242,7 @@ export class DingTalkService {
resolve
(
res
);
},
onFail
:
(
err
:
any
)
=>
{
alert
(
JSON
.
stringify
(
err
));
//
alert(JSON.stringify(err));
},
});
});
...
...
@@ -255,7 +255,7 @@ export class DingTalkService {
*/
private
translateVoice
(
arg
:
any
):
Promise
<
any
>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
this
.
dd
.
device
.
audio
.
translateVoice
({
dd
.
device
.
audio
.
translateVoice
({
mediaId
:
arg
.
mediaId
,
duration
:
arg
.
duration
,
onSuccess
:
(
res
:
any
)
=>
{
...
...
@@ -264,7 +264,7 @@ export class DingTalkService {
resolve
(
res
);
},
onFail
:
(
err
:
any
)
=>
{
alert
(
JSON
.
stringify
(
err
));
//
alert(JSON.stringify(err));
},
});
});
...
...
@@ -326,7 +326,7 @@ export class DingTalkService {
* @memberof DingTalkService
*/
private
close
()
{
this
.
dd
.
biz
.
navigation
.
close
({});
dd
.
biz
.
navigation
.
close
({});
}
/**
...
...
@@ -335,7 +335,7 @@ export class DingTalkService {
* @memberof DingTalkService
*/
private
setTitle
(
title
:
string
)
{
this
.
dd
.
biz
.
navigation
.
setTitle
({
dd
.
biz
.
navigation
.
setTitle
({
title
:
title
,
});
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录