|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <el-dialog append-to-body :title="title" :visible.sync="innerVisible" width="40%">
|
|
|
+ <el-dialog append-to-body :title="title" :visible.sync="innerVisible" @close="close">
|
|
|
<el-row class="transfer">
|
|
|
<el-col :span="12">
|
|
|
<header>
|
|
|
@@ -119,6 +119,9 @@
|
|
|
}
|
|
|
this.innerVisible = true
|
|
|
},
|
|
|
+ close() {
|
|
|
+ this.queryForm = this.$options.data().queryForm
|
|
|
+ },
|
|
|
save() {
|
|
|
this.innerVisible = false
|
|
|
this.$emit('save', this.selected, this.property, this.label)
|