registercode.vue
8.7 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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<template>
<view clas="content">
<view class="logo">
<image src="../../static/kogok.jpg" mode=""></image>
</view>
<view class="logoname">中国面条</view>
<view class="loginone">
<image src="../../static/logintwo.jpg" mode=""></image>
<view class="denglubtn flextwo">
<view class='dengluleft' @click="loginlogin">登录</view>
<view class='dengluleft'>注册</view>
</view>
<view class="loginbox loginboxbox">
<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="entercode" value="" @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="entercode" -->
<input type="text" placeholder="请输入验证码" placeholder-class="entercode" @blur="yanzhengcode" @input="entercode" />
</view>
</view>
<view class="cardyan" @click="disable==false?getcode():''">{{time}}</view>
<!-- <view class="cardyan" v-else>{{time}}</view> -->
<!-- <view class="cardyan" @click="getcode">{{time}}</view> -->
</view>
<view class="loginboxitem flex">
<view class="setpasswordleft">密码</view>
<view class="setpasswordright">
<input placeholder="6-16个字符以内,区分大小写" @input="enterfirst" type="password" v-if="passtrue">
<input placeholder="6-16个字符以内,区分大小写" @input="enterfirst" type="text" v-else>
</view>
<view class="eye" @click="chosepassword">
<image src="../../static/closeeye.png" mode="" v-if="passtrue"></image>
<image src="../../static/openeye.png" mode="" v-else></image>
</view>
</view>
<view class="loginboxitem flex">
<view class="setpasswordleft">确认密码</view>
<view class="setpasswordright">
<input placeholder="请再次输入" @input="entersecond" type="password" v-if="passtruek">
<input placeholder="请再次输入" @input="entersecond" type="text" v-else>
</view>
<view class="eye" @click="chosepasswordk">
<image src="../../static/closeeye.png" mode="" v-if="passtruek"></image>
<image src="../../static/openeye.png" mode="" v-else></image>
</view>
</view>
<view class="loginboxitem flex">
<view class="setpasswordleft">邀请码</view>
<view class="setpasswordright">
<input type="number" placeholder="请输入邀请码(选填)" placeholder-class="entercode" value="" @input="entershare">
</view>
</view>
<button class="loginbtnbtn" @click="finish" v-if="showlogin">注册</button>
<button class="loginbtnbtn" v-else>注册</button>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
var interval = ''
export default {
data() {
return {
showbanben: false,
phone: '',
time: '获取验证码',
disable: false,
code: '',
currentTime: 60,
codenum: '',
setcode: '',
share_number: '',
// 输入密码
firscode: '',
secondcode: '',
// phone: '',
passtrue: true,
passtruek: true,
yaoqingcode: '',
showlogin:true
}
},
onLoad(options) {
},
methods: {
// 去登录页面
loginlogin(){
uni.redirectTo({
url:'/pages/login/loginindex'
})
},
// 输入邀请码
entershare(e) {
this.share_number = e.detail.value
},
// 已有账号去登录
gologin() {
uni.reLaunch({
url: '/pages/login/loginindex'
})
},
//输入手机号
enterphone(e) {
this.phone = e.detail.value
},
// 输入验证码
entercode(e) {
this.codenum = e.detail.value
},
// 获取验证码
getcode() {
console.log(9999)
let that = this;
that.disable = true;
if (this.phone == '') {
uni.showToast({
title: "请输入手机号",
icon: 'none'
})
this.disable = false;
return false
}
if (this.phone != '') {
if (!(/^1[3456789]\d{9}$/.test(that.phone))) {
wx.showToast({
title: '请输入正确的手机号',
icon: 'none'
})
this.disable = false;
return false
}
}
let currentTime = that.currentTime;
let url = "user/get_code";
let param = {
mobile: that.phone,
is_register: 1
};
console.log('8888', param)
app.post(url, param, 'post').then(r => {
console.log('999', r)
this.setcode = r.data.data.code;
this.codenum = r.data.data.code;
interval = setInterval(function() {
currentTime--;
that.time = currentTime + '秒'
if (currentTime <= 0) {
clearInterval(interval)
that.time = '重新发送';
that.currentTime = 61;
that.disable = false;
}
}, 1000)
}).catch(err => {
console.log(err)
uni.showToast({
title: err.msg,
icon: "none"
})
})
},
istestcode() {
let that = this;
var url = 'user/register1';
var params = {
mobile: that.phone,
code: that.setcode,
share_number: that.share_number
}
console.log('48488', params)
app.post(url, params).then((res) => {
console.log(res);
}).catch((err) => {
console.log('888', err)
uni.showToast({
title: err.msg,
icon: "none"
})
})
},
// 验证验证码
yanzhengcode(){
this.istestcode()
},
// 新人获取优惠券
newpeoplecoupon() {
let that = this;
var url = 'user_ticket/user_new';
var params = {
}
console.log('48488', params)
app.post(url, params).then((res) => {
console.log(res, '新人获取优惠券8888888');
}).catch((err) => {
console.log('888', err)
})
},
// 完成注册
finish() {
let that = this;
if (this.phone == '') {
uni.showToast({
title: '请输入手机号',
icon: 'none'
})
return false
}
if (this.phone != '') {
if (!(/^1[3456789]\d{9}$/.test(this.phone))) {
wx.showToast({
title: '请输入正确的手机号',
icon: 'none'
})
return false
}
}
if (this.codenum == '') {
uni.showToast({
title: '请输入验证码',
icon: 'none'
})
return false
}
if (that.firscode == '') {
uni.showToast({
title: '请输入密码',
icon: "none"
})
return false
}
if (that.secondcode == '') {
uni.showToast({
title: "请输入确认密码",
icon: "none"
})
return false
}
if (that.firscode != that.secondcode) {
uni.showToast({
title: '两次输入密码不一致',
icon: "none"
})
return false
}
let url = "user/register2";
let param = {
mobile: that.phone,
password: that.firscode,
affirm_password: that.secondcode,
third_id: uni.getStorageSync("third_id") == undefined ? '' : uni.getStorageSync("third_id"),
share_number: that.yaoqingcode
};
console.log('8888', param)
app.post(url, param, 'get').then(r => {
console.log(r)
uni.showToast({
title: '注册成功',
icon: 'none'
})
uni.setStorageSync("token", r.data.data.token)
that.newpeoplecoupon()
// uni.setStorageSync('user',1)
setTimeout(function() {
uni.switchTab({
url: '/pages/homepage/homepage'
})
}, 1500)
}).catch(err => {
console.log(err)
uni.showToast({
title: err.msg,
icon: 'none'
})
})
},
chosepassword() {
this.passtrue = !this.passtrue
},
chosepasswordk() {
this.passtruek = !this.passtruek
},
// 输入密码
enterfirst(e) {
this.firscode = e.detail.value
},
//
entersecond(e) {
this.secondcode = e.detail.value
},
// 下一步
finishcode() {
if (this.phone == '') {
uni.showToast({
title: '请输入手机号',
icon: 'none'
})
return false
}
if (this.phone != '') {
if (!(/^1[3456789]\d{9}$/.test(this.phone))) {
wx.showToast({
title: '请输入正确的手机号',
icon: 'none'
})
return false
}
}
if (this.codenum == '') {
uni.showToast({
title: '请输入验证码',
icon: 'none'
})
return false
}
this.istestcode()
console.log(9999)
}
}
}
</script>
<style>
@import url('../../base/login');
page {
overflow-y: hidden;
}
image {
width: 100%;
height: 100%
}
/* .boxitemleft{
width:120rpx;
color:#5A5D62;
font-size: 28rpx;
} */
</style>