Files
dvcp_v2_webapp/project/qujing/app/AppCurriculumManage/AppCurriculumManage.vue
yanran200730 35ad7b031d 曲靖
2023-02-07 15:46:53 +08:00

78 lines
1.5 KiB
Vue

<template>
<div class="AppMarketingActivity">
<keep-alive :include="['List']">
<component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
</keep-alive>
</div>
</template>
<script>
import Add from './components/Add'
import List from './components/List'
import Detail from './components/Detail'
import Comment from './components/Comment'
export default {
name: 'AppCurriculumManage',
label: '课程管理',
props: {
instance: Function,
dict: Object
},
data () {
return {
component: 'Comment',
params: {},
include: []
}
},
components: {
Add,
List,
Detail,
Comment
},
methods: {
onChange (data) {
if (data.type === 'Add') {
this.component = 'Add'
this.params = data.params
}
if (data.type === 'Comment') {
this.component = 'Comment'
this.params = data.params
}
if (data.type === 'Detail') {
this.component = 'Detail'
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">
.AppMarketingActivity {
height: 100%;
background: #F3F6F9;
overflow: auto;
}
</style>