|
@ -5,7 +5,7 @@ |
|
|
<dyzxh1 @handleClickPart="handleClickPart" /> |
|
|
<dyzxh1 @handleClickPart="handleClickPart" /> |
|
|
</section> |
|
|
</section> |
|
|
<section v-show="type === 2"> |
|
|
<section v-show="type === 2"> |
|
|
<dyzxh v-if="partyName" @handleClickHouse="handleClickHouse" @handelClosePart="handelClosePart" :partyName="partyName"/> |
|
|
<dyzxh v-if="partyName" ref="dyzxh"@handleClickHouse="handleClickHouse" @handelClosePart="handelClosePart" :partyName="partyName"/> |
|
|
</section> |
|
|
</section> |
|
|
<section v-show="type === 3"> |
|
|
<section v-show="type === 3"> |
|
|
<ryxx v-if="houseId" :houseId="houseId" :houseName="houseName" @handelClose="handelClose"/> |
|
|
<ryxx v-if="houseId" :houseId="houseId" :houseName="houseName" @handelClose="handelClose"/> |
|
@ -50,14 +50,15 @@ import dyxx from "./dyxx.vue" |
|
|
}, |
|
|
}, |
|
|
handleClickHouse(item){ |
|
|
handleClickHouse(item){ |
|
|
this.type = 3; |
|
|
this.type = 3; |
|
|
this.$nextTick(()=>{ |
|
|
|
|
|
this.houseId = item.houseId; |
|
|
this.houseId = item.houseId; |
|
|
this.houseName = item.houseName; |
|
|
this.houseName = item.houseName; |
|
|
}) |
|
|
|
|
|
}, |
|
|
}, |
|
|
handleClickPart(item){ |
|
|
handleClickPart(item){ |
|
|
this.type = 2; |
|
|
this.type = 2; |
|
|
this.partyName = item |
|
|
this.partyName = item |
|
|
|
|
|
this.$nextTick(()=>{ |
|
|
|
|
|
this.$refs['dyzxh'].houseListByGroup() |
|
|
|
|
|
}) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|