tool2.vue
20.4 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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
<template xmlns:el-col="http://www.w3.org/1999/html">
<div>
<el-row style="margin-bottom: 15px; margin-top: 5px">
<el-col :span="8">
<el-form ref="smsCode" :model="smsCode" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>设置短信验证码</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入手机号" v-model="smsCode.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入验证码" v-model="smsCode.code" clearable></el-input>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="smsCodeSubmit">设置验证码</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
<el-col :span="8">
<el-form ref="queryPhoneCode" :model="queryPhoneCode" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>查询短信验证码</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入手机号" v-model="queryPhoneCode.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-select v-model="queryPhoneCode.huanjing" placeholder="请选择执行环境">
<el-option
v-for="item in queryPhoneCodeOptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="queryPhoneCodeSubmit">查询验证码</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
<el-dialog
title="短信验证码:"
:visible.sync="dialogQueryPhoneCode"
width="30%">
<span>{{myQueryPhoneCode}}</span>
<span slot="footer" class="dialog-footer">
<el-button type="primary" v-clipboard:copy="JSON.stringify(myQueryPhoneCode)" v-clipboard:success="onCopy" @click="dialogQueryPhoneCode = false">点击复制</el-button>
</span>
</el-dialog>
</el-col>
<el-col :span="8">
<el-form ref="baomingWeijihuo" :model="baomingWeijihuo" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>创建报名未激活的客户</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入活动ID" v-model="baomingWeijihuo.actid" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入代理人手机号" v-model="baomingWeijihuo.agentPhone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入报名客户手机号" v-model="baomingWeijihuo.customPhone" clearable></el-input>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="baomingWeijihuoSubmit">创建客户</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
</el-row>
<el-row style="margin-bottom: 15px;">
<el-col :span="8">
<el-form ref="apiTest" :model="apiTest" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>接口访问测试</span>
</div>
<div class="text item">
<el-form-item>
<el-select v-model="apiTest.path" placeholder="请选择接口服务">
<el-option
v-for="item in apiTestPathoptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入method" v-model="apiTest.method" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入biz_data" v-model="apiTest.biz_data" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入手机号,如果token已失效,请在app进行登录" v-model="apiTest.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-select v-model="apiTest.huanjing" placeholder="请选择执行环境">
<el-option
v-for="item in apiTestoptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="apiTestSubmit">调用接口</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
<el-col :span="8">
<el-form ref="chouJiang" :model="chouJiang" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>AI2.0抽奖</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入活动ID" v-model="chouJiang.actid" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入吼礼关键词,普通抽奖不需要输入" v-model="chouJiang.keyword" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入手机号" v-model="chouJiang.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入手机登录验证码" v-model="chouJiang.code" clearable></el-input>
</el-form-item>
<el-form-item>
<el-select v-model="chouJiang.type" placeholder="请选择抽奖接口">
<el-option
v-for="item in chouJiangOptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button round @click="chouJiangSubmit">抽奖</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
</el-row>
<el-row style="margin-bottom: 15px;">
<el-col :span="8">
<el-form ref="smsCode1" :model="smsCode222" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>测试设置短信验证码</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入手机号" v-model="smsCode222.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入验证码" v-model="smsCode222.code" clearable></el-input>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="smsCodeSubmit222">测试设置验证码</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
</el-col>
<el-col :span="8">
<el-form ref="queryPhoneCode" :model="queryPhoneCode" label-width="0px">
<el-card class="darkred" shadow="always">
<div slot="header" class="clearfix">
<span>测试查询短信验证码</span>
</div>
<div class="text item">
<el-form-item>
<el-input placeholder="请输入手机号" v-model="queryPhoneCode222.phone" clearable></el-input>
</el-form-item>
<el-form-item>
<el-select v-model="queryPhoneCode222.huanjing" placeholder="请选择执行环境">
<el-option
v-for="item in queryPhoneCode222Options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
<div style="margin: 15px 0;"></div>
<el-form-item>
<el-button round @click="queryPhoneCodeSubmit222">查询验证码</el-button>
</el-form-item>
</div>
</el-card>
</el-form>
<el-dialog
title="短信验证码:"
:visible.sync="dialogQueryPhoneCode"
width="30%">
<span>{{myQueryPhoneCode}}</span>
<span slot="footer" class="dialog-footer">
<el-button type="primary" v-clipboard:copy="JSON.stringify(myQueryPhoneCode)" v-clipboard:success="onCopy" @click="dialogQueryPhoneCode = false">点击复制</el-button>
</span>
</el-dialog>
</el-col>
</el-row>
</div>
</template>
<style>
.text {
font-size: 14px;
}
.item {
margin-bottom: 18px;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
}
.clearfix:after {
clear: both
}
.yellowgreen {
width: calc(100% - 20px);
padding: 0px;
background-color: yellowgreen;
}
.darkred {
width: calc(100% - 20px);
padding: 0px;
background-color: darkkhaki;
}
.blue {
width: calc(100% - 20px);
padding: 0px;
background-color: deepskyblue;
}
.Orange {
width: calc(100% - 20px);
padding: 0px;
background-color: Orange;
}
.chocolate {
width: calc(100% - 20px);
padding: 0px;
background-color: chocolate;
}
.CadetBlue {
width: calc(100% - 20px);
padding: 0px;
background-color: CadetBlue;
}
.LightPink {
width: calc(100% - 20px);
padding: 0px;
background-color: LightPink;
}
.LightSalmon {
width: calc(100% - 20px);
padding: 0px;
background-color: LightSalmon;
}
</style>
<script>
export default {
data() {
return {
smsCode: {
phone: '',
code: 1111
},
smsCode222: {
phone: '15910793402',
code: 6666
},
baomingWeijihuo: {
actid: '',
agentPhone: '',
customPhone: ''
},
queryPhoneCode: {
phone: '',
huanjing: []
},
queryPhoneCode222: {
phone: '15910793402',
huanjing: []
},
queryPhoneCode222Options: [{
value: '0',
label: '测试环境'
}, {
value: '1',
label: '线上环境'
}],
queryPhoneCodeOptions: [{
value: '0',
label: '测试环境'
}, {
value: '1',
label: '线上环境'
}],
dialogQueryPhoneCode: false,
myQueryPhoneCode: '',
apiTest: {
path: [],
method: '',
biz_data: '',
phone: '',
huanjing: []
},
apiTestoptions: [{
value: '0',
label: '测试环境'
}],
apiTestPathoptions: [{
value: 'business',
label: 'business'
}, {
value: 'insurance',
label: 'insurance'
}, {
value: 'activity',
label: 'activity'
}, {
value: 'uc',
label: 'ucenter'
}, {
value: 'peripheral',
label: 'peripheral'
}, {
value: 'recommend',
label: 'recommend'
}],
chouJiang: {
actid: '',
keyword: '',
phone: '',
code: '',
type: []
},
chouJiangOptions: [{
value: '1',
label: '普通抽奖接口'
},{
value: '2',
label: '吼礼抽奖接口'
}]
}
},
mounted() {
this.openToolPage();
},
methods: {
openToolPage() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/openToolPage',config).then((res)=>{
console.log(res);
}).catch(error=>{
console.log(error);
})
},
onCopy (e) {
this.$message({
showClose: true,
message: '内容已复制到剪切板!',
type: 'success'
});
},
apiTestSubmit() {
const {href} = this.$router.resolve({ name:'apiTest2', query:
{method: this.apiTest.method, biz_data: this.apiTest.biz_data, phone: this.apiTest.phone, path: this.apiTest.path.toString(), type: this.apiTest.huanjing.toString()}})
window.open(href, '_blank')
},
smsCodeSubmit() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/smsCode?'+this.$qs.stringify({
phone: this.smsCode.phone,
code: this.smsCode.code
}),config).then((res)=>{
console.log(res);
if(res.data=='OK') {
this.$message({
showClose: true,
message: '设置短信验证码成功',
type: 'success'
});
} else if(res.data=='phoneError') {
this.$message({
showClose: true,
message: '手机号格式错误,必须是11位',
type: 'error'
});
} else {
this.$message({
showClose: true,
message: '设置短信验证码失败',
type: 'error'
});
}
}).catch(error=>{
console.log(error);
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
//-----------------------------------------------------------测试----------------------------------
smsCodeSubmit222() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/smsCode222?'+this.$qs.stringify({
phone: this.smsCode222.phone,
code: this.smsCode222.code
}),config).then((res)=>{
console.log(res);
if(res.data=='OK') {
this.$message({
showClose: true,
message: '设置短信验证码成功',
type: 'success'
});
} else if(res.data=='phoneError') {
this.$message({
showClose: true,
message: '手机号格式错误,必须是11位',
type: 'error'
});
} else {
this.$message({
showClose: true,
message: '设置短信验证码失败',
type: 'error'
});
}
}).catch(error=>{
console.log(error);
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
queryPhoneCodeSubmit222() {
const loading = this.$loading({
lock: true,
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/queryPhoneCode222?'+this.$qs.stringify({
phone: this.queryPhoneCode222.phone,
type: this.queryPhoneCode222.huanjing.toString()
}),config).then((res)=>{
console.log(res);
if(res.data=='codenull') {
this.$message({
showClose: true,
message: '该手机号验证码为空',
type: 'error'
});
} else if(res.data=='typeError') {
this.$message({
showClose: true,
message: '执行环境参数错误',
type: 'error'
});
} else {
this.myQueryPhoneCode = res.data
this.dialogQueryPhoneCode = true
}
loading.close();
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
//-----------------------------------------------------------测试----------------------------------
baomingWeijihuoSubmit() {
const loading = this.$loading({
lock: true,
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/baomingWeijihuo?'+this.$qs.stringify({
actid: this.baomingWeijihuo.actid,
agentPhone: this.baomingWeijihuo.agentPhone,
customPhone: this.baomingWeijihuo.customPhone
}),config).then((res)=>{
console.log(res);
loading.close();
if(res.data=='success') {
this.$message({
showClose: true,
message: '创建报名未激活客户成功',
type: 'success'
});
} else {
this.$message({
showClose: true,
message: res.data,
type: 'error'
});
}
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
queryPhoneCodeSubmit() {
const loading = this.$loading({
lock: true,
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool2/queryPhoneCode?'+this.$qs.stringify({
phone: this.queryPhoneCode.phone,
type: this.queryPhoneCode.huanjing.toString()
}),config).then((res)=>{
console.log(res);
if(res.data=='codenull') {
this.$message({
showClose: true,
message: '该手机号验证码为空',
type: 'error'
});
} else if(res.data=='typeError') {
this.$message({
showClose: true,
message: '执行环境参数错误',
type: 'error'
});
} else {
this.myQueryPhoneCode = res.data
this.dialogQueryPhoneCode = true
}
loading.close();
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
chouJiangSubmit() {
const {href} = this.$router.resolve({ name:'chouJiang', query:
{actid: this.chouJiang.actid, keyword: this.chouJiang.keyword, phone: this.chouJiang.phone, code: this.chouJiang.code, type: this.chouJiang.type.toString()}})
window.open(href, '_blank')
},
}
}
</script>