|
|
@ -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> |