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
<template>
<div>
<div class="banner-block">
<img :src="logoUrl">
</div>
<div class="form-block" v-if="getPhone==0">
<div class="input-block">
<input placeholder="请输入手机号" autofocus="autofocus" type="number" pattern="[0-9]*" v-model="mobile"/>
</div>
<p class="tip">* 如已购买课程,手机号必须填下单时填写的收件人手机号</p>
<div class="input-block">
<input placeholder="请输入图片验证码" oninput="if(value.length>4)value=value.slice(0,4)" type="number" maxlength="4" pattern="[0-9]*" v-model="imgCode"/>
<img src="/api/public/img/verify" class="img" ref="imgCode" @click="refImgCode"/>
</div>
<div class="input-block">
<input placeholder="请输入短信验证码" oninput="if(value.length>4)value=value.slice(0,4)" type="number" maxlength="4" pattern="[0-9]*" v-model="msgCode"/>
<button class="codeMsg right-btn" @click="sendMobileCode" v-if="time===0">发送验证码</button>
<button class="codeMsg disabled right-btn" v-if="time>0">{{time}}s后重新发送</button>
</div>
<div class="btn-block">
<div class="btn" ref="btn" @click="bindMobile">
确定
</div>
</div>
</div>
<div class="form-block" v-if="getPhone==1">
<div class="input-block">
<input v-model="userDesc.mobile"/>
<button class="codeMsg right-btn" @click="changeMoblie" >更换手机号</button>
</div>
<p class="tip">* 如果您的订单手机号为上述手机号直接点下方确定按钮即可</p>
<div class="btn-block">
<div class="btn" ref="btn" style="margin-top:100px;" @click="goList">
确定
</div>
</div>
</div>
</div>
</template>
<script>
import {sendMobileCodeApi,getUserDetailApi,bindMobileApi} from "../../service/api";
import logoUrl from '../../assets/yujiBg.png'
import { Toast } from 'vant';
import common from '../../util/common'
export default {
name: "inspectorActivit",
mounted(){
this.$sa.track('ViewActivationpage',{
});
if(!localStorage.getItem('cc_token')){
let token = common.getUrlParam().token || this.$route.query.token
console.log(token)
if(token){
localStorage.setItem('cc_token',token);
this.$store.dispatch('setToken',token);
}else{
this.$router.push({name:'author',query:{retUrl:this.$route.fullPath,is_new_user_url:1}})
}
}
getUserDetailApi().then(res=>{
localStorage.setItem('userDesc',JSON.stringify(res));
this.userDesc = res
// if(this.userDesc.mobile){
// this.getPhone = 1
// }else{
// }
this.getPhone = 0
})
},
data(){
return {
logoUrl:logoUrl,
mobile:'',
time:0,
flag:true,
imgCode:'',
msgCode:'',
timeSet:null,
getPhone:'-1',
userDesc:{}
}
},
methods:{
goList(){
this.$router.replace({name:'inspectorList'});
},
changeMoblie(){
this.getPhone = 0;
},
refImgCode(){
this.$refs.imgCode.src='/api/public/img/verify?flag='+Math.random()
},
sendMobileCode(){
if(this.imgCode===''||!this.imgCode){
Toast('请填写图形验证码');
return false;
}
let json={
img_code:this.imgCode
};
let mobileCheck = /^1\d{10,11}$/;
if(this.mobile.match(mobileCheck)){
json.mobile = this.mobile
}else{
Toast('请正确填写手机号');
return false
}
this.time=30;
this.timeO();
this.$sa.track('clickSendcode',{});
sendMobileCodeApi(json).then(res=>{
if(res === '操作成功'){
Toast('验证码已发送');
}else{
this.time = 0;
this.refImgCode();
Toast(res);
}
}).catch(res=>{
this.refImgCode();
})
},
timeO(){
if(this.time>0){
this.time--;
setTimeout(()=>{
this.timeO()
},1000)
}
},
bindMobile(){
this.$sa.quick('trackHeatMap',this.$refs.btn)
if(this.flag){
this.flag = false;
if(this.msgCode===''||!this.msgCode) {
Toast('请填写手机验证码');
return false;
}
let json={
verify_code:this.msgCode
};
let mobileCheck = /^1\d{10,11}$/;
if(this.mobile.match(mobileCheck)){
json.mobile = this.mobile
}else{
Toast('请正确填写手机号');
return false
}
if(window.location.href.indexOf('teacher_id') > -1){
json.teacher_id = common.getUrlParam().teacher_id || this.$route.query.teacher_id
}
// if(window.location.href.indexOf('source') > -1){
// json.source = common.getUrlParam().source || this.$route.query.source
// }
json.source = "login"
bindMobileApi(json).then(data=>{
getUserDetailApi().then(res=>{
localStorage.setItem('userDesc',JSON.stringify(res));
this.$router.replace({name:'inspectorList'});
this.flag = true
})
}).catch(res=>{
this.refImgCode();
this.flag = true
})
}
}
}
}
</script>
<style scoped lang="less">
@import "../../util/public";
.banner-block{
text-align: center;
position: relative;
top: -20 * @toVw;
img{
width: 100%;
}
}
.form-block{
position: relative;
z-index: 10;
background: white;
top: -42*@toVw;
padding: 20 * @toVw;
border-radius:20*@toVw;
.tip{font-size: 12*@toVw;color: #FF7875;position: absolute;top: 74 * @toVw;left: 47 * @toVw;}
.input-block{
width: 273*@toVw;height: 47*@toVw;
line-height:47*@toVw;
text-indent: 10*@toVw;
border: 1*@toVw solid #cccccc;
margin-bottom: 26 * @toVw;
position: relative;
.img{
position: absolute;
right: 10*@toVw;
width: 100*@toVw;
top: 10*@toVw;
font-size: 12*@toVw;
}
.right-btn{
position: absolute;
right:10*@toVw;
padding: 0;
width: 100*@toVw;
top: 10*@toVw;
height: 25*@toVw;
line-height: 25*@toVw;
font-size: 12*@toVw;
}
input{
padding: 10 * @toVw 0;
font-size:14*@toVw;
background: transparent;
font-family:PingFangSC-Semibold;
font-weight:600;
color:rgba(0,0,0,1);
line-height:20*@toVw;
outline: none;
border: none;
&::-webkit-input-placeholder{
font-size:14*@toVw;
font-family:PingFangSC-Semibold;
font-weight:600;
color:rgba(204,204,204,1);
line-height:20*@toVw;
} /* 使用webkit内核的浏览器 */
&:-moz-placeholder{
font-size:14*@toVw;
font-family:PingFangSC-Semibold;
font-weight:600;
color:rgba(204,204,204,1);
line-height:20*@toVw;
} /* Firefox版本4-18 */
&::-moz-placeholder{
font-size:14*@toVw;
font-family:PingFangSC-Semibold;
font-weight:600;
color:rgba(204,204,204,1);
line-height:20*@toVw;
} /* Firefox版本19+ */
&:-ms-input-placeholder{
font-size:14*@toVw;
font-family:PingFangSC-Semibold;
font-weight:600;
color:rgba(204,204,204,1);
line-height:20*@toVw;
}
}
}
.btn-block{
text-align: center;margin-top: 27*@toVw;
.btn{
width: 273*@toVw;height: 47*@toVw;background:#FF7D77;color: white;line-height:47*@toVw; border-radius: 4*@toVw;
}
}
}
.codeMsg{
border-radius:4*@toVw;
border:1*@toVw solid rgba(96,173,240,1);
background: white;
color: rgb(96,173,240);
outline: none;
float: right;
padding: 8*@toVw 16*@toVw;
&.disabled{
opacity: 0.5;
}
}
#myCanvas{
position: absolute;
z-index: -1;
opacity: 0.2;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 375 * @toVw;
}
</style>