权利人组件修改
Showing
1 changed file
with
15 additions
and
7 deletions
... | @@ -51,7 +51,7 @@ | ... | @@ -51,7 +51,7 @@ |
51 | width="50%" | 51 | width="50%" |
52 | center | 52 | center |
53 | > | 53 | > |
54 | <el-form :model="formData"> | 54 | <el-form :model="formData" class="qlrForm"> |
55 | <table class="zdjbxxTable" cellspacing="0" cellpadding="0" border="1"> | 55 | <table class="zdjbxxTable" cellspacing="0" cellpadding="0" border="1"> |
56 | <tr> | 56 | <tr> |
57 | <td colspan="2">权利人名称<i class="requisite">*</i></td> | 57 | <td colspan="2">权利人名称<i class="requisite">*</i></td> |
... | @@ -233,7 +233,7 @@ | ... | @@ -233,7 +233,7 @@ |
233 | </td> | 233 | </td> |
234 | </tr> | 234 | </tr> |
235 | <!-- <tr :key="item.dh">--> | 235 | <!-- <tr :key="item.dh">--> |
236 | <tr :key="'dh'+item.index"> | 236 | <tr :key="'dh'+index"> |
237 | <td>证件号码</td> | 237 | <td>证件号码</td> |
238 | <td colspan="3"> | 238 | <td colspan="3"> |
239 | <input type="text" class="formInput" v-model="item.zjh" /> | 239 | <input type="text" class="formInput" v-model="item.zjh" /> |
... | @@ -284,12 +284,12 @@ | ... | @@ -284,12 +284,12 @@ |
284 | </tr> | 284 | </tr> |
285 | </table> | 285 | </table> |
286 | </el-form> | 286 | </el-form> |
287 | <span slot="footer" class="dialog-footer"> | 287 | <div class="dialog-footer"> |
288 | <el-button type="primary" @click="addNewQlrInfo" | 288 | <el-button type="primary" @click="addNewQlrInfo" |
289 | >确 定</el-button | 289 | >确 定</el-button |
290 | > | 290 | > |
291 | <el-button @click="dialogVisible = false">取 消</el-button> | 291 | <el-button @click="dialogVisible = false">取 消</el-button> |
292 | </span> | 292 | </div> |
293 | </el-dialog> | 293 | </el-dialog> |
294 | </div> | 294 | </div> |
295 | </template> | 295 | </template> |
... | @@ -495,8 +495,8 @@ | ... | @@ -495,8 +495,8 @@ |
495 | }); | 495 | }); |
496 | } else { | 496 | } else { |
497 | this.formData.dlrList.forEach((item, index) => { | 497 | this.formData.dlrList.forEach((item, index) => { |
498 | if (index == ind && this.formData.dlr.length > 1) { | 498 | if (index == ind && this.formData.dlrList.length > 1) { |
499 | this.formData.dlr.splice(ind, 1); | 499 | this.formData.dlrList.splice(ind, 1); |
500 | } | 500 | } |
501 | }); | 501 | }); |
502 | } | 502 | } |
... | @@ -597,6 +597,10 @@ | ... | @@ -597,6 +597,10 @@ |
597 | } | 597 | } |
598 | } | 598 | } |
599 | .insetDialog{ | 599 | .insetDialog{ |
600 | .qlrForm{ | ||
601 | height: 500px; | ||
602 | overflow-y: scroll; | ||
603 | } | ||
600 | .zdjbxxTable { | 604 | .zdjbxxTable { |
601 | margin: 10px 0; | 605 | margin: 10px 0; |
602 | background-color: #fff; | 606 | background-color: #fff; |
... | @@ -670,6 +674,10 @@ | ... | @@ -670,6 +674,10 @@ |
670 | .el-select { | 674 | .el-select { |
671 | width: 100%; | 675 | width: 100%; |
672 | } | 676 | } |
673 | } | 677 | } |
678 | .dialog-footer{ | ||
679 | width: 160px; | ||
680 | margin: 20px auto 0; | ||
681 | } | ||
674 | } | 682 | } |
675 | </style> | 683 | </style> | ... | ... |
-
Please register or sign in to post a comment