Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-id-pages-x
提交
4eaf406d
H
hello uni-id-pages-x
项目概览
DCloud
/
hello uni-id-pages-x
通知
43
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-id-pages-x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4eaf406d
编写于
12月 09, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update uni-id-pages-x
上级
e50dd806
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
41 deletion
+5
-41
uni_modules/uni-id-pages-x/components/uni-id-pages-x-avatar/uni-id-pages-x-avatar.uvue
...mponents/uni-id-pages-x-avatar/uni-id-pages-x-avatar.uvue
+1
-1
uni_modules/uni-id-pages-x/init.uts
uni_modules/uni-id-pages-x/init.uts
+3
-39
uni_modules/uni-id-pages-x/pages/userinfo/realnameAuth/realnameAuth.uvue
...-id-pages-x/pages/userinfo/realnameAuth/realnameAuth.uvue
+1
-1
未找到文件。
uni_modules/uni-id-pages-x/components/uni-id-pages-x-avatar/uni-id-pages-x-avatar.uvue
浏览文件 @
4eaf406d
...
...
@@ -137,7 +137,7 @@
crop,
success: (res) => {
console.log('res', res);
let tempFiles = res.tempFiles as UTSJSONObject[];
const tempFiles = res.tempFiles as ChooseImageTempFile[]
let tempFile = tempFiles[0];
let tempFileName = tempFile['name'] as string | null
let tempFilePath = tempFile['path'] as string | null
...
...
uni_modules/uni-id-pages-x/init.uts
浏览文件 @
4eaf406d
...
...
@@ -57,7 +57,7 @@ export default async function () {
// return supportedLoginType?.includes(currentType) != true
// })
const list:Array<string> = [];
console.log('loginTypes: ',loginTypes);
//
console.log('loginTypes: ',loginTypes);
for (let i = 0; i < loginTypes.length; i++) {
const type = loginTypes[i];
if (type != 'smsCode') {
...
...
@@ -85,7 +85,7 @@ export default async function () {
const univerifyManager = uni.getUniverifyManager();
univerifyManager.preLogin({
success() {
console.log("pre login success");
//
console.log("pre login success");
},
fail(err) {
console.error("pre login fail => " + JSON.stringify(err));
...
...
@@ -151,8 +151,7 @@ export default async function () {
// needLogin相关代码-start(此代码仅为版本兼容提示使用,如已知晓可删除)
const needLogin = config.getArray<string>('needLogin')
if(needLogin != null){
if(config['needLogin'] != null){
const tipText = "uni-id-pages x v1.0.4+ 不再支持配置项config.needLogin,请升级HBuilderX 版本为3.99+,使用更强大 uni-id-router替代。详情查看:https://uniapp.dcloud.net.cn/uniCloud/uni-id/summary.html#uni-id-router"
console.error(tipText)
uni.showModal({
...
...
@@ -160,41 +159,6 @@ export default async function () {
showCancel: false,
confirmText:"知道了"
});
}else{
const checkNeedLogin = (url:string):boolean=>{
if(state.isLogin){
return false
}
if (needLogin != null) {
return needLogin.every((item:string):boolean => {
return item == url || new RegExp(item).test(url)
})
}else{
return false
}
}
uni.addInterceptor('navigateTo',{
invoke:(e:NavigateToOptions)=>{
if (checkNeedLogin(e.url)) {
uni.showToast({
title: '请先登录',
icon: 'none'
})
e.url = "/uni_modules/uni-id-pages-x/pages/login/login?uniIdRedirectUrl=" + encodeURIComponent(e.url)
}
}
})
uni.addInterceptor('redirectTo',{
invoke:(e:RedirectToOptions)=>{
if (checkNeedLogin(e.url)) {
uni.showToast({
title: '请先登录',
icon: 'none'
})
e.url = "/uni_modules/uni-id-pages-x/pages/login/login?uniIdRedirectUrl=" + encodeURIComponent(e.url)
}
}
})
}
// needLogin相关代码-end
...
...
uni_modules/uni-id-pages-x/pages/userinfo/realnameAuth/realnameAuth.uvue
浏览文件 @
4eaf406d
...
...
@@ -146,7 +146,7 @@
},
fail: (e: IFacialRecognitionVerifyError) => {
let title = "验证失败"
let content: string
let content: string
;
console.log(
`[frv-debug] certifyId auth error: certifyId -> ${this.certifyId}, error -> ${JSON.stringify(e)}`
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录