Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-starter
提交
ed7af496
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看板
提交
ed7af496
编写于
4月 09, 2021
作者:
L
linju
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
123
上级
86e9b09b
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
100 addition
and
44 deletion
+100
-44
uni_modules/uni-login-page/components/login-short-code/login-short-code.vue
...gin-page/components/login-short-code/login-short-code.vue
+1
-1
uni_modules/uni-login-page/pages/index/index.vue
uni_modules/uni-login-page/pages/index/index.vue
+11
-33
uni_modules/uni-login-page/pages/index/phone-code.vue
uni_modules/uni-login-page/pages/index/phone-code.vue
+85
-10
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
...uick-login/components/uni-quick-login/uni-quick-login.vue
+3
-0
未找到文件。
uni_modules/uni-login-page/components/login-short-code/login-short-code.vue
浏览文件 @
ed7af496
...
...
@@ -27,7 +27,7 @@
*/
count
:
{
type
:
[
String
,
Number
],
default
:
60
default
:
3
}
},
data
()
{
...
...
uni_modules/uni-login-page/pages/index/index.vue
浏览文件 @
ed7af496
...
...
@@ -33,7 +33,7 @@
</view>
<!-- 登录按钮弹窗 -->
<login-action-sheet
ref=
"loginActionSheet"
></login-action-sheet>
<uni-quick-login></uni-quick-login>
<uni-quick-login
ref=
"uniQuickLogin"
></uni-quick-login>
</view>
</template>
...
...
@@ -56,7 +56,7 @@
phoneNumber
:
''
,
formData
:
{
phone
:
''
phone
:
'
17777777777
'
},
rules
:
{
// 对phone字段进行必填验证
...
...
@@ -82,6 +82,7 @@
})
},
onReady
()
{
this
.
$refs
.
uniQuickLogin
.
login
(
'
univerify
'
)
setTimeout
(()
=>
{
currentPage
.
$getAppWebview
().
setStyle
({
top
:
"
0
"
...
...
@@ -113,21 +114,6 @@
* 发送验证吗
*/
uni
.
showLoading
();
uniCloud
.
callFunction
({
"
name
"
:
"
user
"
,
"
data
"
:
{
"
action
"
:
"
sendSmsCode
"
,
"
params
"
:
{
"
mobile
"
:
this
.
formData
.
phone
,
"
type
"
:
"
login
"
}
},
success
:
(
e
)
=>
{
console
.
log
(
e
);
uni
.
showToast
({
title
:
JSON
.
stringify
(
e
.
result
),
icon
:
'
none
'
});
uni
.
navigateTo
({
url
:
'
./phone-code?phoneNumber=
'
+
this
.
formData
.
phone
+
'
&phoneArea=
'
+
this
.
currenPhoneArea
,
...
...
@@ -136,14 +122,6 @@
complete
:
()
=>
{}
});
},
fail
:
(
err
)
=>
{
console
.
log
(
err
);
},
complete
:
()
=>
{
uni
.
hideLoading
()
}
})
},
/**
* 去密码登录页
*/
...
...
uni_modules/uni-login-page/pages/index/phone-code.vue
浏览文件 @
ed7af496
...
...
@@ -20,6 +20,7 @@
</uni-forms>
</view>
</view>
<uni-quick-login></uni-quick-login>
</view>
</template>
...
...
@@ -62,11 +63,9 @@
return
isPhone
&&
isCode
;
}
},
onLoad
(
event
)
{
if
(
event
&&
event
.
phoneNumber
)
{
this
.
phoneNumber
=
event
.
phoneNumber
;
this
.
currenPhoneArea
=
'
+
'
+
Number
(
event
.
phoneArea
);
}
onLoad
({
phoneNumber
,
phoneArea
})
{
this
.
phoneNumber
=
phoneNumber
;
this
.
currenPhoneArea
=
'
+
'
+
Number
(
phoneArea
);
},
onReady
()
{
this
.
$refs
.
shortCode
.
start
();
...
...
@@ -81,15 +80,91 @@
title
:
'
请填写手机号
'
,
icon
:
'
none
'
});
uniCloud
.
callFunction
({
"
name
"
:
"
user-center
"
,
"
data
"
:
{
"
action
"
:
"
sendSmsCode
"
,
"
params
"
:
{
"
mobile
"
:
this
.
phoneNumber
,
"
type
"
:
"
login
"
}
},
success
:
(
e
)
=>
{
console
.
log
(
e
);
// uni.showToast({
// title: JSON.stringify(e.result),
// icon: 'none'
// });
uni
.
showModal
({
content
:
JSON
.
stringify
(
e
.
result
),
showCancel
:
false
,
confirmText
:
'
知道了
'
});
// 发送成功后开启倒计时
done
();
},
fail
:
(
err
)
=>
{
console
.
log
(
err
);
},
complete
:
()
=>
{
uni
.
hideLoading
()
}
})
},
/**
* 完成并提交
*/
submit
(){
uniCloud
.
callFunction
({
//联网验证登陆
"
name
"
:
"
user-center
"
,
"
data
"
:
{
"
action
"
:
"
loginBySms
"
,
"
params
"
:{
"
mobile
"
:
this
.
phoneNumber
,
"
code
"
:
this
.
formData
.
code
}
},
success
:
async
(
e
)
=>
{
uni
.
hideLoading
()
console
.
log
(
e
.
result
);
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
)
uni
.
showToast
({
title
:
'
登陆成功
'
,
icon
:
'
none
'
});
uni
.
navigateBack
()
}
else
{
uni
.
showModal
({
title
:
'
错误
'
,
content
:
e
.
result
.
msg
,
showCancel
:
false
,
confirmText
:
'
知道了
'
,
});
}
},
fail
:
(
err
)
=>
{
console
.
log
(
err
);
uni
.
showModal
({
title
:
'
错误
'
,
content
:
JSON
.
stringify
(
err
),
showCancel
:
false
,
confirmText
:
'
知道了
'
,
});
if
(
err
.
errCode
===
30002
){
}
},
complete
:
()
=>
{
uni
.
hideLoading
()
}
})
}
}
}
</
script
>
...
...
uni_modules/uni-quick-login/components/uni-quick-login/uni-quick-login.vue
浏览文件 @
ed7af496
...
...
@@ -59,10 +59,13 @@
mounted
()
{
//获取当前环境能用的快捷登陆方式
// #ifdef APP-PLUS
uni
.
showLoading
();
plus
.
oauth
.
getServices
(
oauthServices
=>
{
this
.
oauthServices
=
oauthServices
console
.
log
(
oauthServices
);
uni
.
hideLoading
()
},
err
=>
{
uni
.
hideLoading
()
uni
.
showModal
({
title
:
'
获取服务供应商失败:
'
+
JSON
.
stringify
(
err
),
showCancel
:
false
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录