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
0e6db761
...
0e6db76152b27215fdcd6b640fdb45534eade02a
authored
2020-09-04 17:57:33 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
c63cfbc7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
src/page/tool.vue
src/page/tool.vue
View file @
0e6db76
...
...
@@ -40,6 +40,15 @@
</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"
@
click=
"dialogVisible = false"
>
确 定
</el-button>
</span>
</el-dialog>
</el-col>
<el-col
:span=
"8"
>
<el-card
class=
"blue"
shadow=
"always"
>
...
...
@@ -121,7 +130,9 @@
},
bizData
:
{
myData
:
''
}
},
dialogVisible
:
false
,
mybizdata
:
''
}
},
methods
:
{
...
...
@@ -168,7 +179,8 @@
biz_data
:
this
.
bizData
.
myData
}),
config
).
then
((
res
)
=>
{
console
.
log
(
res
);
this
.
mybizdata
=
res
.
data
;
this
.
dialogVisible
=
true
;
}).
catch
(
error
=>
{
console
.
log
(
error
);
this
.
$message
({
...
...
Please
register
or
sign in
to post a comment