Files
dvcp_v2_wxcp_app/library/apps/AppBuilding/AppBuilding.vue

39 lines
546 B
Vue
Raw Normal View History

2021-12-15 18:07:16 +08:00
<template>
<div class="AppBuilding">
2021-12-24 12:05:40 +08:00
<search-map v-if="show"/>
2021-12-15 18:07:16 +08:00
</div>
</template>
<script>
2022-01-26 16:01:18 +08:00
import SearchMap from "./components/searchMap";
2021-12-15 18:07:16 +08:00
export default {
name: 'AppBuilding',
2022-01-26 16:01:18 +08:00
components: {SearchMap},
2021-12-15 18:07:16 +08:00
appName: '以房找人',
data() {
return {
2021-12-24 12:05:40 +08:00
show: true
2021-12-15 18:07:16 +08:00
}
},
2021-12-24 12:05:40 +08:00
onShow() {
this.show = false
this.$nextTick(() => {
this.show = true
})
2021-12-23 17:17:41 +08:00
document.title = "以房找人"
2021-12-24 15:27:36 +08:00
},
2021-12-15 18:07:16 +08:00
}
</script>
<style lang="scss" scoped>
2021-12-23 17:17:41 +08:00
uni-page-body {
2021-12-15 18:07:16 +08:00
height: 100%;
}
2021-12-23 17:17:41 +08:00
.AppBuilding {
2021-12-15 18:07:16 +08:00
height: 100%;
}
2021-12-23 16:42:14 +08:00
</style>