loginindex.vue
8.2 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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<template>
<view class="content">
<view class="logo">
<image src="../../static/choujiang.png" mode=""></image>
</view>
<view class="loginbox">
<view class="loginboxitem flex">
<view class="boxitemleft">
<image src="../../static/phone.png" mode=""></image>
</view>
<view class="boxitemright">
<input type="number" value="" placeholder="请输入手机号" placeholder-class="enter" @input="enterphone" />
</view>
</view>
<view class="loginboxitem flextwo">
<view class="flex">
<view class="boxitemleft">
<image src="../../static/card.png" mode=""></image>
</view>
<view class="boxitemright">
<input type="text" value="" placeholder="请输入短信验证码" placeholder-class="enter" @input="entercode" />
</view>
</view>
<view class="cardyan" @click="getcode" v-if="disable==false">{{time}}</view>
<view class="cardyan" v-else>{{time}}</view>
<!-- <view class="cardyan" @click="getcode">{{time}}</view> -->
</view>
<button class="loginbtn" @click="login">登录</button>
<view class="loginword">
登录即表示同意 <text class="xieyi" @click="xieyi" :data-type="1">用户协议</text>和<text class="xieyi" @click="xieyi" :data-type="2">隐私协议</text>
<view class="phonecode" @click="phonenumber">手机号密码登录</view>
<view class="title">快捷登录</view>
<view class='btnbottom' @click="wxlogin">
<view class="btnimgwei">
<image src="../../static/weixin.png" mode=""></image>
</view>
微信登录
</view>
<view class='btnbottom'>
<view class="btnimgwei">
<image src="../../static/zhifubao.png" mode=""></image>
</view>
支付宝登录
</view>
</view>
<view class="password flexthree">
<view class="passwordleft" @click="forgetmima">忘记密码?</view>
<view class="shuxian">|</view>
<view class="passwordleft" @click="register">立即注册</view>
</view>
</view>
<view class="register" v-if="tipsone">
<view class="loginwrap">
<view class="tip">温馨提示</view>
<view class="zhanghaoone">该账号已在登录中,继续登录将导致</view>
<view class="zhanghaotwo">登录中用户下线</view>
<view class="tipbtn flexone">
<view class="tipbtnleft">取消</view>
<view class="tipbtnright">继续登录</view>
</view>
</view>
</view>
<view class="register" v-if="tipstwo">
<view class="loginwrap">
<view class="tip">温馨提示</view>
<view class="zhanghaoone">该账号已在其他设备登录</view>
<view class="tipbtn flexthree">
<view class="tipbtnright" @click="sure">确认</view>
</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
var interval = null;
export default {
data() {
return {
tipstwo: false,
tipsone: false,
currentTime: 60,
time: '获取验证码',
disable: false,
phone: '',
code: '',
setcode: ''
}
},
methods: {
// 输入手机号
enterphone(e) {
this.phone = e.detail.value
},
// 输入验证码
entercode(e) {
this.code = e.detail.value;
console.log('8877654', this.code)
},
// 获取验证码
getcode() {
let that = this;
that.disable = true;
if (that.phone == '') {
uni.showToast({
title: "请输入手机号",
icon: "none"
})
that.disable = false;
return false
}
if (that.phone != '') {
if (!(/^1[3456789]\d{9}$/.test(that.phone))) {
wx.showToast({
title: '请输入正确的手机号',
icon: 'none'
})
that.disable = false;
return false;
}
}
let currentTime = that.currentTime;
let url = "user/get_code";
let param = {
mobile: that.phone,
};
console.log('8888', param)
app.post(url, param, 'get').then(r => {
console.log(r)
that.setcode = r.data.data.code
interval = setInterval(function() {
currentTime--;
that.time = currentTime + '秒';
console.log(that.time)
if (currentTime <= 0) {
clearInterval(interval)
that.time = '重新发送';
that.currentTime = 61;
that.disable = false;
}
}, 1000)
}).catch(err => {
console.log(err);
})
},
// 登录
login() {
let that = this;
if (that.phone == '') {
uni.showToast({
title: "请输入手机号",
icon: 'none'
})
return false
}
if (!(/^1[3456789]\d{9}$/.test(that.phone))) {
wx.showToast({
title: '请输入正确手机号',
icon: 'none'
})
return false;
}
if (that.code == '') {
uni.showToast({
title: "请输入验证码",
icon: 'none'
})
return false
}
if (that.code !='') {
// that.istestcode()
// uni.showToast({
// title: '请输入正确的验证码',
// icon: 'none'
// })
// return false
}
var url = 'user/login2';
var params = {
mobile: that.phone,
code: that.code,
third_id: ''
}
console.log('1222', params)
app.post(url, params, "post").then((res) => {
console.log(res, '37443');
uni.showToast({
title: '录成功',
icon: 'none'
})
uni.setStorageSync("token",res.data.data.token);
clearInterval(interval);
setTimeout(function() {
uni.navigateTo({
url:'/pages/homepage/homepage'
})
}, 1500);
}).catch((err) => {
console.log(err)
uni.showToast({
title: err.msg,
icon: 'none'
})
clearInterval(interval);
that.time = '发送验证码';
that.currentTime = 61;
that.disable = false;
})
},
// istestcode(){
// let that = this;
// var url = 'user/register1';
// var params = {
// mobile:that.phone,
// code:that.code
// }
// app.post(url, params).then((res) => {
// console.log(res);
// }).catch((err) => {
// console.log('888',err)
// uni.showToast({
// })
// })
// },
// 注册
register() {
uni.navigateTo({
url: '/pages/login/register'
})
},
phonenumber() {
uni.navigateTo({
url: '/pages/login/accountpassword'
})
},
sure() {
// this.tipstwo = false
},
xieyi(e) {
let type = e.currentTarget.dataset.type;
if (type == 1) {
uni.navigateTo({
url: '/pages/login/xieyi?type=' + type
})
} else {
uni.navigateTo({
url: '/pages/login/xieyi?type=' + type
})
}
},
forgetmima() {
uni.navigateTo({
url: '/pages/login/forgetmima'
})
},
// 微信登录
wxlogin() {
let that = this;
uni.login({
provider: 'weixin',
success: function(loginRes) {
console.log(loginRes.authResult);
// 获取用户信息
uni.getUserInfo({
provider: 'weixin',
success: function(infoRes) {
console.log(infoRes)
console.log('用户昵称为:' + infoRes.userInfo.nickName);
var url = 'user/wechat_login';
var params = {
nickname:infoRes.userInfo.nickName,
avatar:infoRes.userInfo.avatarUrl,
openid:infoRes.userInfo.openId,
gender:infoRes.userInfo.gender,
city:infoRes.userInfo.city,
province:infoRes.userInfo.province,
country:infoRes.userInfo.country,
more:JSON.stringify(infoRes.userInfo)
}
console.log('参数', params)
app.post(url, params, "post").then((res) => {
console.log(res);
uni.showToast({
title:'登录成功',
iocn:'none'
})
setTimeout(function(){
uni.navigateTo({
url:"/pages/homepage/homepage"
})
},1500)
}).catch((err) => {
console.log(err)
})
}
});
}
});
}
},
onLaunch: function() {
console.log('App Launch,app启动')
},
onShow: function() {
},
onHide: function() {
console.log('App Hide,app不再展现在前台')
},
onLoad() {
},
onReachBottom() {
},
}
</script>
<style>
@import url('../../base/login');
page {
overflow-y: hidden;
}
.loginbtn {
margin-top: 62rpx;
}
</style>