Files
dvcp_v2_wxcp_app/library/apps/AppBuilding/AppBuilding.vue
2024-10-31 14:34:57 +08:00

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>