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
提交
7700510d
提交
7700510d
编写于
8月 27, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
重写第三方导航栏返回事件
上级
5c4c64bb
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
99 行增加
和
2 行删除
+99
-2
DingTalkService.ts
src/ibiz-core/third-party-service/DingTalkService.ts
+47
-0
ThirdPartyService.ts
src/ibiz-core/third-party-service/ThirdPartyService.ts
+16
-1
WeChatService.ts
src/ibiz-core/third-party-service/WeChatService.ts
+20
-0
view-tool.ts
src/utils/view-tool/view-tool.ts
+16
-1
未找到文件。
src/ibiz-core/third-party-service/DingTalkService.ts
浏览文件 @
7700510d
...
@@ -68,6 +68,7 @@ export class DingTalkService {
...
@@ -68,6 +68,7 @@ export class DingTalkService {
if
(
info
.
indexOf
(
'DINGTALK'
)
!==
-
1
)
{
if
(
info
.
indexOf
(
'DINGTALK'
)
!==
-
1
)
{
dd
.
ready
(()
=>
{
dd
.
ready
(()
=>
{
this
.
$isInit
=
true
;
this
.
$isInit
=
true
;
this
.
navBack
();
});
});
dd
.
error
((
err
:
any
)
=>
{
dd
.
error
((
err
:
any
)
=>
{
alert
(
`dd加载错误:
${
JSON
.
stringify
(
err
)}
`
);
alert
(
`dd加载错误:
${
JSON
.
stringify
(
err
)}
`
);
...
@@ -176,4 +177,50 @@ export class DingTalkService {
...
@@ -176,4 +177,50 @@ export class DingTalkService {
title
:
title
,
title
:
title
,
});
});
}
}
/**
* 设置钉钉导航栏返回按钮
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
private
navBack
(){
var
u
=
navigator
.
userAgent
;
var
isAndroid
=
u
.
indexOf
(
'Android'
)
>
-
1
||
u
.
indexOf
(
'Adr'
)
>
-
1
;
//android终端
if
(
isAndroid
){
document
.
addEventListener
(
'backbutton'
,
(
e
:
any
)
=>
{
e
.
preventDefault
();
this
.
backEvent
();
},
false
)
}
else
{
dd
.
biz
.
navigation
.
setLeft
({
control
:
true
,
//是否控制点击事件,true 控制,false 不控制, 默认false
text
:
'返回'
,
//控制显示文本,空字符串表示显示默认文本
onSuccess
:
()
=>
{
this
.
backEvent
();
}
});
}
}
/**
* 钉钉导航栏返回事件
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
private
backEvent
:
Function
=
()
=>
{};
/**
* 设置钉钉导航栏返回事件
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
public
setBackEvent
(
event
:
Function
){
this
.
backEvent
=
event
;
}
}
}
src/ibiz-core/third-party-service/ThirdPartyService.ts
浏览文件 @
7700510d
...
@@ -153,7 +153,7 @@ export class ThirdPartyService {
...
@@ -153,7 +153,7 @@ export class ThirdPartyService {
}
}
/**
/**
* 设置
钉钉
标题
* 设置
第三方
标题
*
*
* @static
* @static
* @returns {DingTalkService}
* @returns {DingTalkService}
...
@@ -167,4 +167,19 @@ export class ThirdPartyService {
...
@@ -167,4 +167,19 @@ export class ThirdPartyService {
}
}
}
}
/**
* 设置第三方容器导航栏返回事件
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
public
setBackEvent
(
event
:
Function
){
if
(
this
.
isDingTalk
())
{
this
.
dd
.
setBackEvent
(
event
);
}
else
if
(
this
.
isWeChat
())
{
this
.
weChat
.
setBackEvent
(
event
);
}
}
}
}
\ No newline at end of file
src/ibiz-core/third-party-service/WeChatService.ts
浏览文件 @
7700510d
...
@@ -211,4 +211,24 @@ export class WeChatService {
...
@@ -211,4 +211,24 @@ export class WeChatService {
public
setTitle
(
title
:
string
){
public
setTitle
(
title
:
string
){
// 设置标题
// 设置标题
}
}
/**
* 微信导航栏返回事件
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
private
backEvent
:
Function
=
()
=>
{};
/**
* 设置微信导航栏返回事件
*
* @static
* @returns {DingTalkService}
* @memberof DingTalkService
*/
public
setBackEvent
(
event
:
Function
){
this
.
backEvent
=
event
;
}
}
}
\ No newline at end of file
src/utils/view-tool/view-tool.ts
浏览文件 @
7700510d
...
@@ -383,6 +383,9 @@ export class ViewTool {
...
@@ -383,6 +383,9 @@ export class ViewTool {
/**
/**
* 设置第三方服务视图标题
* 设置第三方服务视图标题
*
* @param {string} [title] 传入标题
* @memberof ViewTool
*/
*/
public
setViewTitleOfThirdParty
(
title
:
string
)
{
public
setViewTitleOfThirdParty
(
title
:
string
)
{
this
.
thirdPartyService
.
setTitle
(
title
);
this
.
thirdPartyService
.
setTitle
(
title
);
...
@@ -390,8 +393,20 @@ export class ViewTool {
...
@@ -390,8 +393,20 @@ export class ViewTool {
/**
/**
* 获取第三方服务名称
* 获取第三方服务名称
*
* @memberof ViewTool
*/
*/
public
getThirdPartyName
():
any
{
public
getThirdPartyName
():
any
{
return
this
.
thirdPartyService
.
platform
return
this
.
thirdPartyService
.
platform
;
}
/**
* 设置第三方导航栏返回事件
*
* @param {Function} [event] 传入事件
* @memberof ViewTool
*/
public
setThirdPartyEvent
(
event
:
Function
):
void
{
this
.
thirdPartyService
.
setBackEvent
(
event
);
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录