|
|
|
@ -64,7 +64,7 @@ |
|
|
|
<span>社区简介</span> |
|
|
|
</div> |
|
|
|
<p> |
|
|
|
{{ deptName }},<span v-if="pandectData.gridCount" |
|
|
|
{{ pandectData.deptName }},<span v-if="pandectData.gridCount" |
|
|
|
>划分为{{ pandectData.underCount }}个{{ |
|
|
|
pandectData.underName |
|
|
|
}},</span |
|
|
|
@ -96,6 +96,7 @@ |
|
|
|
<div class="list"> |
|
|
|
<div |
|
|
|
class="item" |
|
|
|
@click="handleClickCategory(item)" |
|
|
|
:key="item.code" |
|
|
|
v-for="(item, index) in resiCategory.list" |
|
|
|
> |
|
|
|
@ -281,6 +282,15 @@ export default { |
|
|
|
); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
handleClickCategory(item) { |
|
|
|
this.$router.push({ |
|
|
|
path: "/main/base-resi", |
|
|
|
query: { |
|
|
|
category: item.code, |
|
|
|
}, |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
handleClickNotice(item) { |
|
|
|
const { msgType, targetId } = item; |
|
|
|
if (msgType == "community_house") { |
|
|
|
|