Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
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
910f7f20
authored
2023-02-06 15:09:16 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
详情弹框关闭时将tabs项置空
1 parent
239e92c8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
src/components/EditDialog/index.vue
src/components/EditDialog/index.vue
View file @
910f7f2
<
template
>
<!-- 编辑 -->
<el-dialog
:close-on-click-modal=
"false"
top=
"0"
custom-class=
"dialogBox editDialogBox mainCenter"
<el-dialog
:close-on-click-modal=
"false"
top=
"0"
@
close=
"closeDialog"
custom-class=
"dialogBox editDialogBox mainCenter"
:visible
.
sync=
"dialogVisible"
width=
"85%"
>
<div
slot=
"title"
class=
"dialog_title"
ref=
"dialogTitle"
>
<b>
{{
title
||
'标题'
}}
</b>
...
...
@@ -218,6 +218,9 @@ export default {
},
closeDialog
()
{
this
.
dialogVisible
=
false
;
//关闭弹框时将tabs项置空
this
.
editItem
=
""
;
this
.
headerList
=
[];
},
submitForm
()
{
let
_this
=
this
;
...
...
Please
register
or
sign in
to post a comment