一键登录云函数构建,手机号一键登录调试

This commit is contained in:
唐明明
2021-07-23 17:22:47 +08:00
parent 1ac15128db
commit a6b92679c2
23 changed files with 3226 additions and 194 deletions

View File

@@ -1,7 +1,7 @@
<template>
<view class="content">
<view class="content">
<button type="default" @click="login">登录</button>
</view>
</template>
@@ -16,7 +16,52 @@
},
methods: {
login(){
uni.login({
provider: 'univerify',
univerifyStyle: {
fullScreen: true,
authButton: {
normalColor : "#c82626",
borderRadius: 0
},
buttons: {
list: [{
provider : "微信",
iconPath : "/static/icons/wechat.png"
}]
},
otherLoginButton: {
borderColor : "#c82626",
title : "其他手机号码登录",
borderRadius: 0,
textColor : "#c82626"
},
privacyTerm: {
privacyItems: [{
url : "https://baidu.com",
title : "用户服务协议"
}]
}
},
success : auth => {
uniCloud.callFunction({
name: "phone-login",
data: {
access_token: auth.authResult.access_token,
openid : auth.authResult.openid
}
}).then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
},
fail : err => {
console.log(err)
}
})
}
}
}
</script>