39 lines
546 B
Vue
39 lines
546 B
Vue
<template>
|
|
<div class="AppBuilding">
|
|
<search-map v-if="show"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import SearchMap from "./components/searchMap";
|
|
|
|
export default {
|
|
name: 'AppBuilding',
|
|
components: {SearchMap},
|
|
appName: '以房找人',
|
|
data() {
|
|
return {
|
|
show: true
|
|
}
|
|
},
|
|
onShow() {
|
|
this.show = false
|
|
this.$nextTick(() => {
|
|
this.show = true
|
|
})
|
|
document.title = "以房找人"
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
uni-page-body {
|
|
height: 100%;
|
|
}
|
|
|
|
.AppBuilding {
|
|
height: 100%;
|
|
}
|
|
</style>
|