2be0a4ef by 杨威

楼盘表双击户打开的户编辑弹框样式调整

1 parent 0abf3d46
......@@ -137,6 +137,9 @@ ol, ul { list-style:none; }
-webkit-box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.4);
box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.4);
}
.el-dialog__body{
padding-bottom: 25px!important;
}
// 自定义右键菜单样式
.contextmenu {
margin: 0;
......
......@@ -247,7 +247,7 @@
@close="hcxlzClose"
></h-cxlz>
<!-- 双击户的弹出框 -->
<el-dialog title="户编辑" :visible.sync="hbjVisible" width="50%" center>
<el-dialog title="户编辑" class="hbjDialog" :visible.sync="hbjVisible" width="70%" center>
<hbj ref="hbj" :bsm="hbsm"></hbj>
<div class="btnGroup">
<el-button type="primary" @click="hbjSaveInfo">保存</el-button>
......@@ -852,5 +852,10 @@ export default {
margin: 20px auto 0;
width: 230px;
}
.hbjDialog{
/deep/ .el-dialog{
margin-top: 10vh!important;
}
}
}
</style>
......