ff9e4c33 by weimo934

Merge remote-tracking branch 'origin/master'

2 parents a807b47f 11f3c79f
...@@ -46,11 +46,12 @@ ...@@ -46,11 +46,12 @@
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
52 > 53 >
53 <el-form :model="formData"> 54 <el-form :model="formData" class="qlrForm">
54 <table class="zdjbxxTable" cellspacing="0" cellpadding="0" border="1"> 55 <table class="zdjbxxTable" cellspacing="0" cellpadding="0" border="1">
55 <tr> 56 <tr>
56 <td colspan="2">权利人名称<i class="requisite">*</i></td> 57 <td colspan="2">权利人名称<i class="requisite">*</i></td>
...@@ -232,7 +233,7 @@ ...@@ -232,7 +233,7 @@
232 </td> 233 </td>
233 </tr> 234 </tr>
234 <!-- <tr :key="item.dh">--> 235 <!-- <tr :key="item.dh">-->
235 <tr :key="'dh'+item.index"> 236 <tr :key="'dh'+index">
236 <td>证件号码</td> 237 <td>证件号码</td>
237 <td colspan="3"> 238 <td colspan="3">
238 <input type="text" class="formInput" v-model="item.zjh" /> 239 <input type="text" class="formInput" v-model="item.zjh" />
...@@ -283,12 +284,12 @@ ...@@ -283,12 +284,12 @@
283 </tr> 284 </tr>
284 </table> 285 </table>
285 </el-form> 286 </el-form>
286 <span slot="footer" class="dialog-footer"> 287 <div class="dialog-footer">
287 <el-button type="primary" @click="addNewQlrInfo" 288 <el-button type="primary" @click="addNewQlrInfo"
288 >确 定</el-button 289 >确 定</el-button
289 > 290 >
290 <el-button @click="dialogVisible = false">取 消</el-button> 291 <el-button @click="dialogVisible = false">取 消</el-button>
291 </span> 292 </div>
292 </el-dialog> 293 </el-dialog>
293 </div> 294 </div>
294 </template> 295 </template>
...@@ -494,8 +495,8 @@ ...@@ -494,8 +495,8 @@
494 }); 495 });
495 } else { 496 } else {
496 this.formData.dlrList.forEach((item, index) => { 497 this.formData.dlrList.forEach((item, index) => {
497 if (index == ind && this.formData.dlr.length > 1) { 498 if (index == ind && this.formData.dlrList.length > 1) {
498 this.formData.dlr.splice(ind, 1); 499 this.formData.dlrList.splice(ind, 1);
499 } 500 }
500 }); 501 });
501 } 502 }
...@@ -594,6 +595,12 @@ ...@@ -594,6 +595,12 @@
594 text-align: center; 595 text-align: center;
595 } 596 }
596 } 597 }
598 }
599 .insetDialog{
600 .qlrForm{
601 height: 500px;
602 overflow-y: scroll;
603 }
597 .zdjbxxTable { 604 .zdjbxxTable {
598 margin: 10px 0; 605 margin: 10px 0;
599 background-color: #fff; 606 background-color: #fff;
...@@ -668,5 +675,9 @@ ...@@ -668,5 +675,9 @@
668 width: 100%; 675 width: 100%;
669 } 676 }
670 } 677 }
678 .dialog-footer{
679 width: 160px;
680 margin: 20px auto 0;
681 }
671 } 682 }
672 </style> 683 </style>
......
...@@ -375,7 +375,7 @@ ...@@ -375,7 +375,7 @@
375 375
376 <script> 376 <script>
377 import Qlr from "./../../../../../components/formMenu/qlr"; 377 import Qlr from "./../../../../../components/formMenu/qlr";
378 import Qlxz from "./../../../../../components/formMenu/qlxz"; 378 import Qlxz from "./../../../../../components/formMenu/qlxz_simple";
379 export default { 379 export default {
380 name:'zrz', 380 name:'zrz',
381 components:{ 381 components:{
......
...@@ -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
......