Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-starter
提交
f2071bd4
U
uni-starter
项目概览
DCloud
/
uni-starter
通知
4669
Star
228
Fork
210
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f2071bd4
编写于
4月 09, 2021
作者:
L
linju
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
123
上级
c0e157ac
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
36 addition
and
12 deletion
+36
-12
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
...uick-login/components/uni-quick-login/uni-quick-login.vue
+33
-12
uni_modules/uni-upgrade-center-app/utils/check-update.js
uni_modules/uni-upgrade-center-app/utils/check-update.js
+3
-0
未找到文件。
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
浏览文件 @
f2071bd4
...
...
@@ -8,6 +8,10 @@
</
template
>
<
script
>
import
{
mapGetters
,
mapMutations
}
from
'
vuex
'
;
export
default
{
data
()
{
return
{
...
...
@@ -84,10 +88,15 @@
*/
},
methods
:
{
...
mapMutations
({
setUserInfo
:
'
user/login
'
}),
login
(
type
)
{
let
oauthService
=
this
.
oauthServices
.
find
((
service
)
=>
service
.
id
==
type
)
// #ifdef APP-PLUS
uni
.
showLoading
({
mask
:
true
});
//请勿直接使用前端获取的unionid或openid直接用于登陆,前端的数据都是不可靠的
if
(
type
==
'
weixin
'
){
oauthService
.
authorize
(({
code
})
=>
{
console
.
log
(
code
);
...
...
@@ -120,24 +129,36 @@
// #endif
},
quickLogin
(
params
,
type
){
//请勿直接使用authResult中的unionid或openid直接用于登陆,前端的数据都是不可靠的
console
.
log
({
params
,
type
});
uniCloud
.
callFunction
({
//联网验证登陆
"
name
"
:
"
user-center
"
,
"
data
"
:
{
"
action
"
:
"
login_by_
"
+
type
,
params
},
success
:
(
e
)
=>
{
success
:
async
(
e
)
=>
{
uni
.
hideLoading
()
console
.
log
(
e
.
result
);
uni
.
showModal
({
content
:
JSON
.
stringify
(
e
.
result
),
showCancel
:
false
});
// uni.showModal({
// content: JSON.stringify(e.result),
// showCancel: false
// });
if
(
e
.
result
.
code
===
0
){
uni
.
setStorageSync
(
'
uni_id_uid
'
,
e
.
result
.
uid
)
uni
.
setStorageSync
(
'
uni_id_token
'
,
e
.
result
.
token
)
uni
.
setStorageSync
(
'
uni_id_token_expired
'
,
e
.
result
.
tokenExpired
)
console
.
log
(
'
66666=
'
,
e
.
result
.
uid
,
e
.
result
.
token
,
e
.
result
.
tokenExpired
);
delete
e
.
result
.
userInfo
.
token
this
.
setUserInfo
(
e
.
result
.
userInfo
)
if
(
type
==
'
univerify
'
){
uni
.
closeAuthView
()
}
uni
.
showToast
({
title
:
'
登陆成功
'
,
icon
:
'
none
'
});
uni
.
navigateBack
()
}
},
fail
:
(
err
)
=>
{
console
.
log
(
err
);
...
...
uni_modules/uni-upgrade-center-app/utils/check-update.js
浏览文件 @
f2071bd4
...
...
@@ -3,6 +3,9 @@ const PACKAGE_INFO_KEY = '__package_info__'
export
default
function
()
{
// #ifdef APP-PLUS
return
'
先关了
'
plus
.
runtime
.
getProperty
(
plus
.
runtime
.
appid
,
function
(
widgetInfo
)
{
uniCloud
.
callFunction
({
name
:
'
check-version
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录