Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
br-client
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
a7f06ba4
...
a7f06ba4d9f73ead97b41647a606fd3c036e8e58
authored
2022-07-06 13:54:05 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
8acde53d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
src/page/toolWaiBao.vue
src/page/toolWaiBao.vue
View file @
a7f06ba
...
...
@@ -21,6 +21,16 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-select
v-model=
"queryPhoneCode.version"
placeholder=
"请选择平台版本"
>
<el-option
v-for=
"item in queryPhoneCodeVersionOptions"
: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>
...
...
@@ -112,7 +122,8 @@
return
{
queryPhoneCode
:
{
phone
:
''
,
huanjing
:
[]
huanjing
:
[],
version
:
[]
},
queryPhoneCodeOptions
:
[{
value
:
'0'
,
...
...
@@ -121,6 +132,13 @@
value
:
'1'
,
label
:
'线上环境'
}],
queryPhoneCodeVersionOptions
:
[{
value
:
'2'
,
label
:
'二期活动'
},{
value
:
'3'
,
label
:
'三期活动'
}],
dialogQueryPhoneCode
:
false
,
myQueryPhoneCode
:
''
}
...
...
@@ -162,7 +180,8 @@
}
this
.
$http
.
get
(
'/tool2/waibaoQueryPhoneCode?'
+
this
.
$qs
.
stringify
({
phone
:
this
.
queryPhoneCode
.
phone
,
type
:
this
.
queryPhoneCode
.
huanjing
.
toString
()
type
:
this
.
queryPhoneCode
.
huanjing
.
toString
(),
version
:
this
.
queryPhoneCode
.
version
.
toString
()
}),
config
).
then
((
res
)
=>
{
console
.
log
(
res
);
if
(
res
.
data
==
'codenull'
)
{
...
...
Please
register
or
sign in
to post a comment