Files
dvcp_v2_webapp/packages/tutelage/AppEarlyWarning/AppEarlyWarning.vue
aixianling a8dff862d2 初始化
2021-12-14 18:36:19 +08:00

67 lines
1.2 KiB
Vue

<template>
<div class="doc-circulation ailist-wrapper">
<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 Monitor from '../AppWristband/components/Monitor'
export default {
name: 'AppEarlyWarning',
label: '健康预警',
props: {
instance: Function,
dict: Object
},
data () {
return {
component: 'List',
params: {},
include: []
}
},
components: {
List,
Monitor
},
mounted () {
},
methods: {
onChange (data) {
if (data.type === 'Monitor') {
this.component = 'Monitor'
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">
.doc-circulation {
height: 100%;
background: #F3F6F9;
overflow: auto;
}
</style>