check_status.js
8.3 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
401
402
403
404
405
406
407
408
409
410
411
412
413
// pages/index2/index2.js
let app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
isTank: false,
number: '', // 车牌号
chengList: '', //地区简称
cheng_id: '', // 地区id
name: '',
cname: '', //车主称呼
phone: '', //联系电话
code: '', //验证码
scene: '', // 二维码编号
getmsg: '获取短信验证码',
sendmsg: 'sendmsg',
phone: ''
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
console.log(options)
var t = this
let url = decodeURIComponent(options.q);
console.log(url)
let urlarr = url.length
console.log(urlarr)
let scene = url.substring(urlarr - 16, urlarr)
// let scene = options.scene
console.log(scene)
if (!scene) {
// 不含参数
console.log('不含参数')
return;
}
let u = 'index/isBang'
let d = {
scene: scene
}
app.post(u, d).then(r => {
if (r.code == 1) {
//绑定了
wx.reLaunch({
url: '/pages/call/call?id=' + scene
})
return false;
} else if (r.code == 2) {
//放在onshow里进行处理 不然会有两个弹窗
} else if (r.code == 3) {
wx.reLaunch({
url: '/pages/edit_code/edit_code?id=' + r.data.scene,
})
} else if (r.code == 0) {
wx.reLaunch({
url: '/pages/index2/index2?scene=' + r.data.scene,
})
}
})
t.setData({
scene: scene
})
},
sendmessg: function (e) {
let t = this;
let u = 'index/faCode'
let d = {
phone: t.data.phone
}
if (d.phone == '') {
wx.showToast({
title: '手机号不能为空',
icon: "none"
})
} else if (!(/^1[3456789]\d{9}$/.test(d.phone))) {
wx.showToast({
title: '手机号错误',
icon: "none"
})
} else {
app.post(u, d).then(r => {
console.log(r)
if (r.code == 1) {
var timer = 1;
if (timer == 1) {
timer = 0
var that = this
var time = 60
that.setData({
sendmsg: "sendmsgafter",
})
var inter = setInterval(function () {
that.setData({
getmsg: time + "s后重新发送",
})
time--
if (time < 0) {
timer = 1
clearInterval(inter)
that.setData({
sendmsg: "sendmsg",
getmsg: "获取短信验证码",
})
}
}, 1000)
}
}
})
}
},
// 个人中心
getMy() {
},
takbottom() {
this.setData({
isTank: false
})
},
//选择城市
getchwngz(e) {
console.log(e)
let t = this;
let chengList = t.data.chengList;
let i = e.currentTarget.dataset.i;
let x = e.currentTarget.dataset.x;
let id = e.currentTarget.dataset.id;
let n = e.currentTarget.dataset.n;
if (x == false) {
chengList.forEach((item, index) => {
console.log(item)
// t.checked.push(item.productId)
item.xuanz = false
})
chengList[i].xuanz = true
t.setData({
cheng_id: id,
chengList: chengList,
name: n
})
}
console.log(t.data.chengList)
console.log(t.data.cheng_id)
},
//全国简称
getCheng() {
let t = this;
let u = 'index/cheng'
app.post(u, '').then(r => {
console.log(r)
t.setData({
chengList: r.data
})
var chengList = r.data
for (var index in chengList) {
var xuanz = "chengList[" + index + "].xuanz";
this.setData({
[xuanz]: false
})
}
})
},
//验证码
getCode(e) {
this.setData({
code: e.detail.value
})
},
//联系电话
getPhone(e) {
this.setData({
phone: e.detail.value
})
},
//车主称呼
getCname(e) {
this.setData({
cname: e.detail.value
})
},
// 车牌号
getNumber(e) {
this.setData({
number: e.detail.value
})
},
//绑定
baodin() {
let t = this;
let d = {
scene: t.data.scene,
cheng_id: t.data.cheng_id,
pai: t.data.number.toUpperCase(),
name: t.data.cname,
phone: t.data.phone,
code: t.data.code
}
console.log(d)
if (d.cheng_id == '') {
wx.showToast({
title: '请选择车辆所在城市',
icon: "none"
})
} else if (d.pai == '') {
wx.showToast({
title: '请输入车牌号',
icon: "none"
})
} else if (!(/^[A-Z]{1}(([A-Z0-9]{5})$|[A-Z0-9]{6}$)/.test(d.pai))) {
wx.showToast({
title: '车牌号有误',
icon: "none"
})
} else if (d.name == '') {
wx.showToast({
title: '请输入车主称呼',
icon: "none"
})
} else if (d.phone == '') {
wx.showToast({
title: '请输入电话号',
icon: "none"
})
} else if (!(/^1[3456789]\d{9}$/.test(d.phone))) {
wx.showToast({
title: '手机号错误',
icon: "none"
})
} else if (d.code == '') {
wx.showToast({
title: '验证码不能为空',
icon: "none"
})
} else {
// 发送请求绑定二维码
let u = 'index/bang'
app.post(u, d).then(res => {
console.log(res)
if (res.code == 1) {
let u = 'index/yinPhone'
var tel = '';
app.post(u, '').then(res => {
console.log(res);
let tel = res.data.phone
wx.showModal({
title: '绑定成功',
content: '您会收到号码为\r\n' + tel + ' 的来电,请注意接听',
showCancel: false,
confirmColor: '#FD7E00',
success(res) {
if (res.confirm) {
wx.reLaunch({
url: '/pages/my/my'
})
}
}
})
})
} else {
wx.showToast({
title: res.msg,
icon: 'none',
duration: 2000
})
}
})
}
},
handleTap1() {
this.setData({
isTank: false
})
},
// 弹框
getTank() {
this.setData({
isTank: true
})
},
getMy() {
wx.navigateTo({
url: '/pages/my/my'
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function (options) {
let token = wx.getStorageSync('token')
if (token == '') {
wx.navigateTo({
url: "/pages/logs/logs",
})
}
var scene = this.data.scene
this.check(scene);
//this.getCheng()
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
check(scene) {
var t = this
console.log(scene)
if (!scene) {
// 不含参数
console.log('不含参数')
wx.reLaunch({
url: '/pages/index/index'
})
return;
}
let u = 'index/isBang'
let d = {
scene: scene
}
app.post(u, d).then(r => {
if (r.code == 1) {
//绑定了
wx.reLaunch({
url: '/pages/call/call?id=' + scene
})
return false;
} else if (r.code == 2) {
wx.redirectTo({
url: '/pages/call/call',
})
} else if (r.code == 3) {
wx.reLaunch({
url: '/pages/edit_code/edit_code?id=' + r.data.scene,
})
} else if (r.code == 0) {
wx.reLaunch({
url: '/pages/index2/index2?scene=' + r.data.scene,
})
}
})
t.setData({
scene: scene
})
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
//联系车主
lianXi(e) {
console.log(e)
let dhh = e.currentTarget.dataset.dh
wx.makePhoneCall({
phoneNumber: dhh
})
},
//申请
getShengq() {
wx.navigateTo({
url: '/pages/buy/buy'
})
},
})