Files
dvcp_v2_wxcp_app/src/apps/AppBuilding/AppBuilding.vue

47 lines
794 B
Vue
Raw Normal View History

2021-12-15 18:07:16 +08:00
<template>
<div class="AppBuilding">
<component
:is="component"
@change="onChange"
:params="params">
</component>
</div>
</template>
<script>
import Detail from './components/detail'
import Add from './components/add'
import List from './components/list'
2021-12-16 11:18:39 +08:00
import SearchMap from './components/searchMap'
import Map from './components/map'
2021-12-15 18:07:16 +08:00
export default {
name: 'AppBuilding',
appName: '以房找人',
data() {
return {
2021-12-20 09:35:52 +08:00
component: 'SearchMap',
2021-12-15 18:07:16 +08:00
params: {}
}
},
2021-12-16 11:18:39 +08:00
components: { Detail, Add, List, SearchMap, Map },
2021-12-15 18:07:16 +08:00
methods: {
onChange(e) {
this.params = e.params
this.component = e.type
}
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppBuilding{
height: 100%;
}
</style>