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

Loading…
Cancel
Save