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
21c6e09f
...
21c6e09f5cf34c2591a58e7e79332ce56399b443
authored
2020-11-03 14:59:53 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
626a4b13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
src/page/tool.vue
src/page/tool.vue
View file @
21c6e09
...
...
@@ -188,6 +188,14 @@
:value=
"item.value"
>
</el-option>
</el-select>
<el-select
v-model=
"bizData.version"
placeholder=
"请选择算法版本"
>
<el-option
v-for=
"item in bizDataversionoptions"
: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>
...
...
@@ -441,7 +449,8 @@
},
bizData
:
{
myData
:
''
,
type
:
[]
type
:
[],
version
:
[]
},
bizDataoptions
:
[{
value
:
'0'
,
...
...
@@ -450,6 +459,13 @@
value
:
'1'
,
label
:
'解密'
}],
bizDataversionoptions
:
[{
value
:
'0'
,
label
:
'新版本算法'
},
{
value
:
'1'
,
label
:
'老版本算法'
}],
dialogVisible
:
false
,
mybizdata
:
''
,
smsCode
:
{
...
...
@@ -633,7 +649,8 @@
}
this
.
$http
.
get
(
'/tool/bizData?'
+
this
.
$qs
.
stringify
({
biz_data
:
this
.
bizData
.
myData
,
type
:
this
.
bizData
.
type
.
toString
()
type
:
this
.
bizData
.
type
.
toString
(),
version
:
this
.
bizData
.
version
.
toString
()
}),
config
).
then
((
res
)
=>
{
console
.
log
(
res
);
this
.
mybizdata
=
res
.
data
;
...
...
Please
register
or
sign in
to post a comment