mobileLogin.vue
7.9 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<template>
<view class="login">
<view class="box">
<view v-if="changeLogin == '账号密码登录'" class="form">
<u-form :model="form" ref="uForm">
<u-form-item prop="mobile"
:leftIconStyle="{width:'40rpx',height:'40rpx', position:'relative', right:'8rpx'}"
left-icon="/static/img/my/login_mobile.png" borderBottom>
<u-input v-model="form.mobile" border="none" maxlength='11' placeholder="请输入手机号"
:customStyle="{fontSize:'17px'}" />
</u-form-item>
<u-form-item prop="verifyCode"
:leftIconStyle="{width:'40rpx',height:'40rpx', position:'relative', right:'8rpx'}"
left-icon="/static/img/my/login_code1.png" borderBottom>
<u-input v-model="form.password" border="none" placeholder="请输入验证码"
:customStyle="{fontSize:'17px'}" />
<u-button type="default" size="mini" slot="right" :hair-line="false"
:custom-style="{color:'#0CB17A', border:'none',fontSize:'30rpx'}" @click="getCode">
{{codeText}}
</u-button>
<u-code ref="uCode" @change="codeChange"></u-code>
</u-form-item>
</u-form>
</view>
<view v-else class="form">
<u-form :model="form" ref="uForm">
<u-form-item prop="mobile"
:left-icon-style="{width:'40rpx',height:'40rpx', position:'relative', right:'8rpx'}"
left-icon="/static/img/my/login_mobile.png" borderBottom>
<u-input v-model="form.mobile" border="none" placeholder="请输入账号"
:customStyle="{fontSize:'17px'}" />
</u-form-item>
<u-form-item prop="verifyCode"
:left-icon-style="{width:'40rpx',height:'40rpx', position:'relative', right:'8rpx'}"
left-icon="/static/img/my/login_code2.png" borderBottom>
<u-input v-model="form.password" border="none" type='password' placeholder="请输入密码"
:customStyle="{fontSize:'17px'}" />
</u-form-item>
</u-form>
</view>
<view class="btn button_warp">
<c-button type="confirm" shape="circle"
:customStyle="{borderRadius:'48rpx',fontSize:'34rpx',color:'#fff',fontWeight:'400'}" text="登录"
:disabled="isDisable" @click="phoneLogin"></c-button>
</view>
<view class="changeLogin" @click="onchangeLogin">
{{changeLogin}}
</view>
<view class="agreement">
<view class="check">
<u-checkbox-group @change="checkboxChange" v-model="checked">
<u-checkbox size="28" activeColor="#0CB17A" shape="circle">
</u-checkbox>
</u-checkbox-group>
</view>
<view class="text">
<text>您已阅读理解并同意</text>
<text class="span" @click="linkService">《优学乐业服务协议》、</text>
<text class="span" @click="linkPolicy">《优学乐业隐私政策》</text>
</view>
</view>
</view>
<view>
<u-toast ref="uToast" />
</view>
</view>
</template>
<script>
import {
mapState,
mapActions
} from 'vuex'
import {
getSmsCodeApi,
} from '@/config/api.js';
import md5 from '@/common/md5';
export default {
data() {
return {
errorType: 'toast',
isDisable: true,
checked: [],
service: "https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/agreement/%E3%80%8A%E4%BC%98%E5%AD%A6%E4%B9%90%E4%B8%9A%E7%94%A8%E6%88%B7%E6%9C%8D%E5%8A%A1%E5%8D%8F%E8%AE%AE%E3%80%8B.htm",
policy: "https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/agreement/%E3%80%8A%E4%BC%98%E5%AD%A6%E4%B9%90%E4%B8%9A%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE%E3%80%8B.htm",
form: {
mobile: '',
password: '',
},
changeLogin: '账号密码登录',
codeText: '发送验证码',
}
},
onLoad() {
const {
dispatch
} = this.$store;
},
onShow() {
},
watch: {
checked: function(newVal, oldVal) {
this.isDisable = newVal.length != 0 ? false : true;
}
},
computed: {
...mapState('user', {
// 箭头函数可使代码更简练
isReg: 'isReg',
}),
},
methods: {
onchangeLogin() {
if (this.changeLogin == '验证码登录') {
this.changeLogin = '账号密码登录';
} else {
this.changeLogin = '验证码登录';
}
},
linkService() {
console.log(this)
this.$u.route({
url: `/pages/common/webview/webview?navtitle=服务协议&url=${this.service}`,
})
},
linkPolicy() {
this.$u.route({
url: `/pages/common/webview/webview?navtitle=隐私政策&url=${this.policy}`,
})
},
checkboxChange(n) {
// console.log(n)
},
getUserProfile() {
// 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认
// 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
wx.getUserProfile({
desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log('getUserProfile...', res)
// this.$store.commit('setWenxinUserInfo', res);
this.$u.vuex('vuex_weixinUserInfo', res.userInfo);
}
})
},
codeChange(text) {
this.codeText = text;
},
getCode() {
const {
mobile = ''
} = this.form;
if (!(mobile && /^1[0-9]{10}$/.test(mobile))) {
this.$refs.uToast.show({
message: '请填写正确手机号',
type: 'error',
duration: 1500,
})
} else {
if (this.$refs.uCode.canGetCode) {
// 模拟向后端请求验证码
uni.showLoading({
title: '正在获取验证码'
})
setTimeout(() => {
uni.hideLoading();
// 通知验证码组件内部开始倒计时
this.$refs.uCode.start();
console.log(mobile)
getSmsCodeApi({
phone: mobile
})
}, 1000);
} else {
this.$u.toast('倒计时结束后再发送');
}
}
},
phoneLogin() {
if (this.changeLogin == '账号密码登录') {
this.$store.dispatch(`user/login`, {
way: 'code',
type: 'teacher',
phone: this.form.mobile,
code: this.form.password,
})
} else {
console.log(md5.hex_md5(this.form.password));
this.$store.dispatch(`user/login`, {
way: 'name',
type: 'teacher',
username: this.form.mobile,
password: md5.hex_md5(this.form.password),
})
}
},
}
}
</script>
<style lang="scss" scoped>
.login {
width: 100%;
height: 100%;
position: relative;
.box {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
.logo {
padding: 156rpx 0 0 0;
width: 120rpx;
margin: 0 auto;
}
.name {
margin: 32rpx 0 0 0;
text-align: center;
font-size: 48rpx;
line-height: 66rpx;
color: #000000;
font-weight: 600;
}
.changeLogin {
width: 100%;
text-align: center;
margin: 48rpx 0 0 0;
font-size: 15px;
font-weight: 400;
color: #0CB17A;
}
.agreement {
position: fixed;
left: 0;
bottom: 34rpx;
display: flex;
flex-direction: row;
justify-content: flex-start;
font-size: 24rpx;
margin: 30rpx 0 32rpx 0;
padding: 0 50rpx;
.check {
width: 40rpx;
padding: 5rpx 0 0 0;
// display: inline-block;
}
.text {
// display: inline-block;
color: rgba(0, 0, 0, 0.45);
.span {
color: #0CB17A;
}
}
}
.form {
margin: 128rpx 60rpx 0px;
}
.btn {
margin-top: 128rpx;
padding: 0 48rpx;
}
.wxLogin {
display: flex;
align-items: center;
flex-direction: column;
margin-top: 180rpx;
button {
background-color: transparent;
}
button::after {
border: initial
}
image {
width: 96rpx;
height: 96rpx;
}
text {
margin-top: 0rpx;
}
}
}
}
</style>