69 lines
1.3 KiB
Vue
69 lines
1.3 KiB
Vue
<template>
|
|
<div class="AppBuildManage">
|
|
<keep-alive :include="['List']">
|
|
<component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/List'
|
|
import Add from './components/Add'
|
|
import BuildMsg from './components/BuildMsg'
|
|
|
|
export default {
|
|
label: '楼栋管理',
|
|
name: 'AppBuildManage',
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
component: 'List',
|
|
params: {},
|
|
include: [],
|
|
}
|
|
},
|
|
|
|
components: {
|
|
Add,
|
|
List,
|
|
BuildMsg,
|
|
},
|
|
methods: {
|
|
onChange(data) {
|
|
if (data.type === 'add') {
|
|
this.component = 'Add'
|
|
this.params = data.params
|
|
}
|
|
|
|
if (data.type === 'buildmsg') {
|
|
this.component = 'BuildMsg'
|
|
this.params = {...data.params}
|
|
}
|
|
|
|
if (data.type == 'list') {
|
|
this.component = 'List'
|
|
this.params = data.params
|
|
|
|
this.$nextTick(() => {
|
|
if (data.isRefresh) {
|
|
this.$refs.component.getList()
|
|
}
|
|
})
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.AppBuildManage {
|
|
height: 100%;
|
|
background: #f3f6f9;
|
|
overflow: auto;
|
|
}
|
|
</style>
|