0abf3d46 by 杨威

户表单样式调整,增加宽度、高度

1 parent 82416799
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
46 </el-pagination> 46 </el-pagination>
47 </div> 47 </div>
48 48
49 <el-dialog title="户编辑" :visible.sync="hbjVisible" width="50%" center> 49 <el-dialog title="户编辑" class="hbjDialog" :visible.sync="hbjVisible" width="70%" center>
50 <hbj ref="hbj" :bsm="hbsm" :key="hbsm"></hbj> 50 <hbj ref="hbj" :bsm="hbsm" :key="hbsm"></hbj>
51 <div class="btnGroup"> 51 <div class="btnGroup">
52 <el-button type="primary" @click="hbjSaveInfo">保存</el-button> 52 <el-button type="primary" @click="hbjSaveInfo">保存</el-button>
...@@ -201,5 +201,14 @@ ...@@ -201,5 +201,14 @@
201 padding: 18px 0; 201 padding: 18px 0;
202 } 202 }
203 } 203 }
204 .hbjDialog{
205 /deep/ .el-dialog{
206 margin-top: 10vh!important;
207 }
208 }
209 .btnGroup{
210 margin: 20px auto 0;
211 width: 230px;
212 }
204 } 213 }
205 </style> 214 </style>
......