meixioacomponent 0.3.86 → 0.3.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -195,10 +195,15 @@ export default {
|
|
|
195
195
|
})
|
|
196
196
|
},
|
|
197
197
|
closeDialog() {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
this
|
|
201
|
-
|
|
198
|
+
const { isDestroy } = this.$props
|
|
199
|
+
if (isDestroy) {
|
|
200
|
+
this.isShow = false
|
|
201
|
+
this.$nextTick(() => {
|
|
202
|
+
this.$destroy()
|
|
203
|
+
})
|
|
204
|
+
} else {
|
|
205
|
+
this.centerDialogVisible = false
|
|
206
|
+
}
|
|
202
207
|
},
|
|
203
208
|
iconClick() {
|
|
204
209
|
this.closeDialog()
|
|
@@ -184,6 +184,7 @@
|
|
|
184
184
|
ref="dialog"
|
|
185
185
|
:width="`1000px`"
|
|
186
186
|
:title="`高级筛选`"
|
|
187
|
+
|
|
187
188
|
:modal="proScreenModel"
|
|
188
189
|
:modallAppendToBody="false"
|
|
189
190
|
>
|
|
@@ -226,7 +227,6 @@ import baseButtonHandle from '../base/baseButtonHandle/baseButtonHandle.vue' //
|
|
|
226
227
|
|
|
227
228
|
//
|
|
228
229
|
import componentConfig from '../../config/componentConfig'
|
|
229
|
-
import { isatty } from 'tty'
|
|
230
230
|
let canPush = true
|
|
231
231
|
export default {
|
|
232
232
|
name: 'baseProTable',
|
|
@@ -879,10 +879,9 @@ export default {
|
|
|
879
879
|
background: inherit;
|
|
880
880
|
.header-extend {
|
|
881
881
|
display: flex;
|
|
882
|
+
align-items: center;
|
|
882
883
|
flex-flow: row nowrap;
|
|
883
884
|
justify-content: flex-start;
|
|
884
|
-
align-items: center;
|
|
885
|
-
margin-right: var(--margin-5);
|
|
886
885
|
}
|
|
887
886
|
}
|
|
888
887
|
.table-suffix {
|