toolAime.vue
16.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
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
<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="nlpApi" :model="nlpApi" label-width="0px">-->
<!-- <el-card class="darkred" shadow="always">-->
<!-- <div slot="header" class="clearfix">-->
<!-- <span>NLP语义接口测试</span>-->
<!-- </div>-->
<!-- <div class="text item">-->
<!-- <el-form-item>-->
<!-- <el-input placeholder="请输入nlp问题,比如今天天气怎么样" v-model="nlpApi.keyword" clearable></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item>-->
<!-- <el-select v-model="nlpApi.huanjing" placeholder="请选择执行环境">-->
<!-- <el-option-->
<!-- v-for="item in nlpApiOptions"-->
<!-- :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="nlpApiSubmit">调用接口</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="nlpTestCase" :model="nlpTestCase" label-width="0px">-->
<!-- <el-card class="darkred" shadow="always">-->
<!-- <div slot="header" class="clearfix">-->
<!-- <span>查询NLP测试用例</span>-->
<!-- </div>-->
<!-- <div class="text item">-->
<!-- <el-form-item>-->
<!-- <el-select v-model="nlpTestCase.myplatform" placeholder="请选择APP平台">-->
<!-- <el-option-->
<!-- v-for="item in nlpTestCaseMyplatformOptions"-->
<!-- :key="item.value"-->
<!-- :label="item.label"-->
<!-- :value="item.value">-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item>-->
<!-- <el-select v-model="nlpTestCase.runtime" placeholder="请选择执行环境">-->
<!-- <el-option-->
<!-- v-for="item in nlpTestCaseRuntimeOptions"-->
<!-- :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="nlpTestCaseSubmit">查询NLP测试用例</el-button>-->
<!-- </el-form-item>-->
<!-- </div>-->
<!-- </el-card>-->
<!-- </el-form>-->
<!-- </el-col>-->
<!-- <el-col :span="8">-->
<!-- <el-form ref="bizData" :model="bizData" label-width="0px">-->
<!-- <el-card class="darkred" shadow="always">-->
<!-- <div slot="header" class="clearfix">-->
<!-- <span>加密&解密biz_data</span>-->
<!-- </div>-->
<!-- <div class="text item">-->
<!-- <el-form-item>-->
<!-- <el-input placeholder="请输入biz_data" v-model="bizData.myData" clearable></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item>-->
<!-- <el-select v-model="bizData.type" placeholder="请选择算法类型">-->
<!-- <el-option-->
<!-- v-for="item in bizDataoptions"-->
<!-- :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="bizDataSubmit">提交</el-button>-->
<!-- </el-form-item>-->
<!-- </div>-->
<!-- </el-card>-->
<!-- </el-form>-->
<!-- <el-dialog-->
<!-- title="biz_data"-->
<!-- :visible.sync="dialogVisible"-->
<!-- width="30%">-->
<!-- <span>{{mybizdata}}</span>-->
<!-- <span slot="footer" class="dialog-footer">-->
<!-- <el-button type="primary" v-clipboard:copy="JSON.stringify(mybizdata)" v-clipboard:success="onCopy" @click="dialogVisible = false">点击复制</el-button>-->
<!-- </span>-->
<!-- </el-dialog>-->
<!-- </el-col>-->
<!-- <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-row>-->
</div>
</template>
<style>
.text {
font-size: 14px;
}
.item {
margin-bottom: 18px;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
}
.clearfix:after {
clear: both
}
.darkred {
width: calc(100% - 20px);
padding: 0px;
background-color: darkkhaki;
}
</style>
<script>
export default {
data() {
return {
nlpTestCase: {
myplatform: [],
runtime: []
},
nlpTestCaseMyplatformOptions: [{
value: '1',
label: '国寿AI健康'
}, {
value: '2',
label: 'AIME健康'
}],
nlpTestCaseRuntimeOptions: [{
value: '1',
label: '测试环境'
}, {
value: '2',
label: '线上环境'
}],
smsCode: {
phone: '',
code: 1111
},
queryPhoneCode: {
phone: '',
huanjing: []
},
queryPhoneCodeOptions: [{
value: '0',
label: '测试环境'
}, {
value: '1',
label: '线上环境'
}],
dialogQueryPhoneCode: false,
myQueryPhoneCode: '',
nlpApi: {
keyword: '',
huanjing: []
},
nlpApiOptions: [{
value: '1',
label: '线上环境'
}],
bizData: {
myData: '',
type: []
},
bizDataoptions: [{
value: '0',
label: '加密'
}, {
value: '1',
label: '解密'
}],
dialogVisible: false,
mybizdata: '',
apiTest: {
path: [],
method: '',
biz_data: '',
phone: '',
huanjing: []
},
apiTestoptions: [{
value: '1',
label: '线上环境'
}],
apiTestPathoptions: [{
value: 'business',
label: 'business'
}, {
value: 'activity',
label: 'activity'
}, {
value: 'ucenter',
label: 'ucenter'
}, {
value: 'peripheral',
label: 'peripheral'
}],
}
},
mounted() {
this.openToolPage()
},
methods: {
openToolPage() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool/openToolPage',config).then((res)=>{
console.log(res);
}).catch(error=>{
console.log(error);
})
},
nlpTestCaseSubmit() {
const {href} = this.$router.resolve({ name:'nlp', query:
{myplatform: this.nlpTestCase.myplatform.toString(), runtime: this.nlpTestCase.runtime.toString()}})
window.open(href, '_blank')
},
smsCodeSubmit() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/aimeTool/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'
});
})
},
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('/aimeTool/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'
});
})
},
onCopy (e) {
this.$message({
showClose: true,
message: '内容已复制到剪切板!',
type: 'success'
});
},
nlpApiSubmit() {
const {href} = this.$router.resolve({ name:'nlpApi', query:
{keyword: this.nlpApi.keyword, runtime: this.nlpApi.huanjing.toString(), platform: "1"}})
window.open(href, '_blank')
},
bizDataSubmit() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool/bizDataAime?'+this.$qs.stringify({
biz_data: this.bizData.myData,
type: this.bizData.type.toString()
}),config).then((res)=>{
console.log(res);
this.mybizdata = res.data;
this.dialogVisible = true;
}).catch(error=>{
console.log(error);
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
},
apiTestSubmit() {
const {href} = this.$router.resolve({ name:'apiTestAime', 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')
},
}
}
</script>