|
@ -411,9 +411,10 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<resi-details |
|
|
<resi-details |
|
|
@close="displayedResiId = ''" |
|
|
@close="popupShow = false" |
|
|
:resi-id="displayedResiId" |
|
|
:resi-id="displayedResiId" |
|
|
v-if="displayedResiId" |
|
|
:popupShow='popupShow' |
|
|
|
|
|
v-if="popupShow" |
|
|
/> |
|
|
/> |
|
|
|
|
|
|
|
|
<house-details |
|
|
<house-details |
|
@ -508,6 +509,8 @@ export default { |
|
|
displayedHouseId: "", |
|
|
displayedHouseId: "", |
|
|
|
|
|
|
|
|
pandectData: {}, |
|
|
pandectData: {}, |
|
|
|
|
|
|
|
|
|
|
|
popupShow:false |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
@ -591,6 +594,7 @@ export default { |
|
|
handleClickDotBtn(type, info) { |
|
|
handleClickDotBtn(type, info) { |
|
|
if (type == "watch-resi") { |
|
|
if (type == "watch-resi") { |
|
|
this.displayedResiId = info.user_id; |
|
|
this.displayedResiId = info.user_id; |
|
|
|
|
|
this.popupShow = true |
|
|
} else if (type == "watch-house") { |
|
|
} else if (type == "watch-house") { |
|
|
this.displayedHouseId = info.house_id; |
|
|
this.displayedHouseId = info.house_id; |
|
|
} |
|
|
} |
|
|