Browse Source

解决打开明细查询后,切换页面返回的时候,遮罩层消失的问题

master
安虹睿 1 year ago
parent
commit
be3c9a4120
  1. 15
      Code/Fe/src/components/filterForDetailPage/index.vue

15
Code/Fe/src/components/filterForDetailPage/index.vue

@ -1,5 +1,5 @@
<template>
<div class="filterForDetailPage">
<div class="filterForDetailPage" v-if="dialogShow">
<el-dialog
title="明细查询"
:visible.sync="dialogShow"
@ -169,17 +169,11 @@ props: {
type: Boolean,
default: false,
},
// api
DeleteApi: {
type: String,
default: null
},
// -
// listColumns:{
// type: Array,
// default: null
// },
// -
parentColumns:{
type: Array,
@ -224,6 +218,13 @@ data () {
listColumns:[],//
}
},
activated(){
//
this.dialogShow = false
this.$nextTick(() => {
this.dialogShow = true
});
},
mounted(){
this.paging()
this.initHandleButtons()

Loading…
Cancel
Save