Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
e770eb16
U
uni-api
项目概览
DCloud
/
uni-api
通知
671
Star
23
Fork
12
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-api
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e770eb16
编写于
3月 01, 2023
作者:
lizhongyi_
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
将防截屏参数open调整为enable
上级
7a9e40e8
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
17 addition
and
18 deletion
+17
-18
pages/index/index.vue
pages/index/index.vue
+12
-13
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
+3
-3
uni_modules/uni-usercapturescreen/utssdk/interface.uts
uni_modules/uni-usercapturescreen/utssdk/interface.uts
+2
-2
未找到文件。
pages/index/index.vue
浏览文件 @
e770eb16
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
return
{
return
{
title
:
'
Hello
'
,
title
:
'
Hello
'
,
memListener
:
null
,
memListener
:
null
,
setUserCaptureScreenFlag
:
tru
e
,
setUserCaptureScreenFlag
:
fals
e
,
setUserCaptureScreenText
:
'
禁止截屏
'
setUserCaptureScreenText
:
'
禁止截屏
'
}
}
},
},
...
@@ -162,16 +162,15 @@
...
@@ -162,16 +162,15 @@
title
:
'
捕获截屏事件
'
title
:
'
捕获截屏事件
'
})
})
}
}
});
});
if
(
uni
.
getSystemInfoSync
().
platform
!=
"
android
"
)
{
if
(
uni
.
getSystemInfoSync
().
platform
!=
"
android
"
)
{
// 除android 之外的平台,直接提示监听已开启
// 除android 之外的平台,直接提示监听已开启
uni
.
showToast
({
uni
.
showToast
({
icon
:
"
none
"
,
icon
:
"
none
"
,
title
:
'
截屏监听已开启
'
title
:
'
截屏监听已开启
'
})
})
}
}
},
},
testScreenShotOff
()
{
testScreenShotOff
()
{
uni
.
offUserCaptureScreen
(
function
(
res
)
{
uni
.
offUserCaptureScreen
(
function
(
res
)
{
...
@@ -197,7 +196,7 @@
...
@@ -197,7 +196,7 @@
testSetUserCaptureScreen
()
{
testSetUserCaptureScreen
()
{
let
flag
=
this
.
setUserCaptureScreenFlag
;
let
flag
=
this
.
setUserCaptureScreenFlag
;
uni
.
setUserCaptureScreen
({
uni
.
setUserCaptureScreen
({
open
:
flag
,
enable
:
flag
,
success
:
(
res
)
=>
{
success
:
(
res
)
=>
{
console
.
log
(
"
setUserCaptureScreen open:
"
+
flag
+
"
success:
"
+
JSON
.
stringify
(
res
));
console
.
log
(
"
setUserCaptureScreen open:
"
+
flag
+
"
success:
"
+
JSON
.
stringify
(
res
));
},
},
...
@@ -214,9 +213,9 @@
...
@@ -214,9 +213,9 @@
});
});
this
.
setUserCaptureScreenFlag
=
!
this
.
setUserCaptureScreenFlag
;
this
.
setUserCaptureScreenFlag
=
!
this
.
setUserCaptureScreenFlag
;
if
(
this
.
setUserCaptureScreenFlag
)
{
if
(
this
.
setUserCaptureScreenFlag
)
{
this
.
setUserCaptureScreenText
=
'
禁止截屏
'
;
}
else
{
this
.
setUserCaptureScreenText
=
'
允许截屏
'
;
this
.
setUserCaptureScreenText
=
'
允许截屏
'
;
}
else
{
this
.
setUserCaptureScreenText
=
'
禁止截屏
'
;
}
}
},
},
}
}
...
...
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
浏览文件 @
e770eb16
...
@@ -138,10 +138,10 @@ export const setUserCaptureScreen : SetUserCaptureScreen = function (options : S
...
@@ -138,10 +138,10 @@ export const setUserCaptureScreen : SetUserCaptureScreen = function (options : S
options.fail?.(res);
options.fail?.(res);
options.complete?.(res);
options.complete?.(res);
} else {
} else {
if (options.open == true) {
if (options.enable == true) {
CaptureScreenTool.onAntiScreenshot(options)
} else {
CaptureScreenTool.offAntiScreenshot(options)
CaptureScreenTool.offAntiScreenshot(options)
} else {
CaptureScreenTool.onAntiScreenshot(options)
}
}
}
}
}
}
...
...
uni_modules/uni-usercapturescreen/utssdk/interface.uts
浏览文件 @
e770eb16
...
@@ -18,9 +18,9 @@ export type UserCaptureScreenResult = {
...
@@ -18,9 +18,9 @@ export type UserCaptureScreenResult = {
export type SetUserCaptureScreenOption = {
export type SetUserCaptureScreenOption = {
/**
/**
* true:
开启防截屏 false: 关闭防截屏
* true:
允许用户截屏 false: 不允许用户截屏,防止用户截屏到应用页面内容
*/
*/
open
: boolean;
enable
: boolean;
/**
/**
* 接口调用成功的回调函数
* 接口调用成功的回调函数
*/
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录