1a6132d1 by 杨威

多层弹框样式修改

1 parent 3e745cf5
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
46 <el-dialog 46 <el-dialog
47 title="权利人信息" 47 title="权利人信息"
48 :visible.sync="dialogVisible" 48 :visible.sync="dialogVisible"
49 custom-class="insetDialog"
49 append-to-body 50 append-to-body
50 width="50%" 51 width="50%"
51 center 52 center
...@@ -594,6 +595,8 @@ ...@@ -594,6 +595,8 @@
594 text-align: center; 595 text-align: center;
595 } 596 }
596 } 597 }
598 }
599 .insetDialog{
597 .zdjbxxTable { 600 .zdjbxxTable {
598 margin: 10px 0; 601 margin: 10px 0;
599 background-color: #fff; 602 background-color: #fff;
......
...@@ -324,9 +324,9 @@ export default { ...@@ -324,9 +324,9 @@ export default {
324 // 双击 324 // 双击
325 this.hbsm = this.bsms[this.bsms.length-1]; 325 this.hbsm = this.bsms[this.bsms.length-1];
326 this.hbjVisible = true; 326 this.hbjVisible = true;
327 setTimeout(() => { 327 this.$nextTick(function () {
328 this.$refs.hbj.getHInfo(this.hbsm); 328 this.$refs.hbj.getHInfo(this.hbsm);
329 }, 0); 329 })
330 }else{ 330 }else{
331 //单击 TO DO 331 //单击 TO DO
332 332
......