|
|
@ -229,7 +229,7 @@ |
|
|
|
> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="title-small">居住信息</div> |
|
|
|
<div class="title-small" id="reside">居住信息</div> |
|
|
|
<section |
|
|
|
v-for="(item, indexK) in resiDetailObj.resideInfoDtos" |
|
|
|
:key="indexK" |
|
|
@ -244,7 +244,7 @@ |
|
|
|
<div class="f-flex" style="width: 600px"> |
|
|
|
<div class="f-label"><b>所属房屋:</b></div> |
|
|
|
<span class="f-left8 f-font-color"> |
|
|
|
{{ item.agencyName?item.agencyName:'' + item.homeName || "--" }} |
|
|
|
{{ item.agencyName + item.homeName }} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -1316,8 +1316,12 @@ export default { |
|
|
|
handelCLickMenu(id, index) { |
|
|
|
this.active = index; |
|
|
|
const bottomElement = document.getElementById(`${id}`); |
|
|
|
bottomElement.scrollIntoView({ behavior: "smooth", block: "start" }); |
|
|
|
const topOffset = -120; // 减少的高度值 |
|
|
|
const topPos = bottomElement.getBoundingClientRect().top + window.pageYOffset + topOffset; |
|
|
|
window.scrollTo({ top: topPos, behavior: "smooth" }); |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
handelCLickShowCheckPassword(type) { |
|
|
|
this.form.password = ""; |
|
|
|
this.checkType = "view"; |
|
|
|