1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<template>
<view class="container">
<view class="safe_content">
<text class="close_icon" @click="closePage">{{closeIcon}}</text>
<text class="title">这是一个普通uvue的dialogPage页面</text>
<view class="number">
<text id="number-text" class="number-text" ref="number-text">{{phone}}</text>
<text id="slogan-text" class="slogan-text">{{slogan}}</text>
</view>
<button id="login-button" class="login-button" @click="loginIn">本机号码一键登录</button>
<view class="privacy">
<checkbox id="privacy-checkbox" class="privacy-checkbox" ref="privacy-checkbox" :checked="false"></checkbox>
<text class="privacy-normal-text">登录即同意</text>
<text id="privacy-text" class="privacy-text" @click="openLink">{{privacyName}}</text>
</view>
<text class="other" @click="otherLogin">其他登录方式</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
univerifyManager: null as UniverifyManager | null,
phone: '',
slogan: '',
privacyName: '',
privacyUrl: '',
closeIcon: '\uE650'
}
},
onLoad(options : OnLoadOptions) {
this.univerifyManager = uni.getUniverifyManager();
this.phone = options['phone'] as string;
this.slogan = options['slogan'] as string;
this.privacyName = options['name'] as string;
this.privacyUrl = options['link'] as string;
},
methods: {
closePage() {
uni.closeDialogPage({
dialogPage: this.$page,
animationType:'slide-out-bottom',
success(res) {
console.log('closeThisDialog success', res)
},
fail(err) {
console.log('closeThisDialog fail', err)
}
})
},
openLink() {
let url = '/pages/API/get-univerify-manager/full-webview-page?url=' + this.privacyUrl + '&title=' + this.privacyName + '&animationType=slide-out-bottom';
uni.openDialogPage({
url: url,
animationType: 'slide-in-bottom',
success(res) {
console.log("打开隐私协议");
},
fail(err) {
console.log(err);
}
})
},
loginIn() {
const numberTextElement = this.$page.getElementById('number-text');
const sloganTextElement = this.$page.getElementById('slogan-text');
const loginButtonElement = this.$page.getElementById('login-button');
const privacyCheckBoxElement = this.$page.getElementById('privacy-checkbox');
const privacyTextElement = this.$page.getElementById('privacy-text');
if(numberTextElement != null && sloganTextElement != null && loginButtonElement != null && privacyCheckBoxElement != null && privacyTextElement != null){
this.univerifyManager?.customLogin({
numberTextElement: numberTextElement!,
sloganTextElement: sloganTextElement!,
loginButtonElement: loginButtonElement!,
privacyCheckBoxElement: privacyCheckBoxElement!,
privacyTextElement: privacyTextElement!,
success: (res) => {
console.log(res);
this.takePhoneNumber(res.accessToken, res.openId);
},
fail: (error) => {
if (error.errCode == 40001){
uni.showToast({
title:"请同意服务条款",
position: "bottom",
duration:2000
})
}else if(error.errCode == 40002){
uni.showToast({
title:"授权页不符合规范",
position: "bottom",
duration:2000
})
}else{
const errorMsg = JSON.parseObject(error.cause?.cause?.message ?? "")?.getString("errorDesc") ?? error.errMsg;
uni.showToast({
title:errorMsg,
position: "bottom",
duration:2000
})
}
}
})
}else{
uni.showToast({
title:"元素不能为空",
position: "bottom",
duration:2000
})
}
},
takePhoneNumber(token : string, openId : string) {
//云函数取号
uniCloud.callFunction({
name: 'univerify',
data: {
access_token: token, // 客户端一键登录接口返回的access_token
openid: openId // 客户端一键登录接口返回的openid
}
}).then(res => {
// 关闭登录页
this.closePage();
setTimeout(() => {
uni.showModal({
title: '取号成功',
content: res.result.getJSON("res")?.getString("phoneNumber"),
showCancel: false
});
}, 100);
}).catch(err => {
console.error(JSON.stringify(err));
// 关闭登录页
this.closePage();
setTimeout(() => {
uni.showModal({
title: '取号失败',
content: (err as Error).message,
showCancel: false
});
}, 100);
});
},
otherLogin() {
//此处可实现其他登录方式
uni.showToast({
title: "使用其他方式登录",
position: "bottom"
})
}
}
}
</script>
<style>
.container {
background-color: white;
flex: 1;
width: 100%;
}
.safe_content {
padding-top: var(--status-bar-height);
width: 100%;
height: 100%;
}
.close_icon {
left: 90%;
top: 15px;
font-family: uni-icon;
font-size: 24px;
/* font-weight: bold; */
}
.title {
align-self: center;
top: 20px;
}
.number {
width: 100%;
top: 25%;
position: absolute;
height: 120px;
}
.number-text {
width: 100%;
text-align: center;
font-size: 28px;
font-weight: bold;
align-self: center;
height: 30px;
}
.slogan-text {
margin-top: 10px;
width: 100%;
font-size: 13px;
text-align: center;
align-self: center;
color: gray;
height: 20px;
}
.login-button {
width: 80%;
top: 40%;
position: absolute;
align-self: center;
background-color: orangered;
font-size: 16px;
color: white;
}
.privacy {
margin-top: 10px;
flex-direction: row;
flex-wrap: wrap;
top: 45%;
width: 100%;
justify-content: center;
align-self: center;
position: absolute;
}
.privacy-checkbox {
transform: scale(0.65);
}
.privacy-text {
margin-top: 4px;
color: #007aff;
font-size: 14px;
}
.privacy-normal-text {
margin-top: 4px;
color: gray;
font-size: 14px;
}
.other {
bottom: 7%;
transform: translateY(50%);
position: absolute;
align-self: center;
font-size: 14px;
}
</style>