Browse Source

【东阳子表】主子表编辑-模拟子表弹窗遮罩层开发(为处理切换tab消失问题)

faster_develop
安虹睿 1 year ago
parent
commit
92e794855b
  1. 12
      WinIn.FasterZ.Wms.Fe/src/components/addEditFromApiPop/index.vue

12
WinIn.FasterZ.Wms.Fe/src/components/addEditFromApiPop/index.vue

@ -109,6 +109,8 @@
<el-button type="primary" @click="submitHandle()"> </el-button>
</div>
<!-- 模拟子表弹窗遮罩层为处理切换tab消失问题-->
<div class="imitateDetailPopModal" v-if="detailPopShow"></div>
<!-- 子表弹窗 -->
<el-dialog
:visible.sync="detailPopShow"
@ -119,6 +121,7 @@
width="95%"
top="2vh"
class="detailPop"
:modal="false"
>
<div class="rightDetailTable">
<div class="dialogOuterTitle">{{formTitle}} 子表信息</div>
@ -503,4 +506,13 @@ export default {
margin-bottom:0
}
}
.imitateDetailPopModal{
background: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
</style>
Loading…
Cancel
Save