Files
dvcp_v2_webapp/packages/device/AppEquipmentManage/AppEquipmentManage.vue
shijingjing 0a49f98892 task
2022-06-09 16:42:46 +08:00

62 lines
1.1 KiB
Vue

<template>
<div class="AppEquipmentManage">
<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 taskList from './components/taskList'
export default {
label: '广播设备管理',
name: 'AppEquipmentManage',
props: {
instance: Function,
dict: Object,
},
data() {
return {
component: 'taskList',
params: {},
include: [],
}
},
components: {
List,
taskList,
},
methods: {
onChange(data) {
if (data.type === 'taskList') {
this.component = 'taskList'
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">
.AppEquipmentManage {
height: 100%;
background: #f3f6f9;
overflow: auto;
}
</style>