Files
dvcp_v2_webapp/project/qujing/app/AppCurriculumManage/AppCurriculumManage.vue

78 lines
1.5 KiB
Vue
Raw Normal View History

2023-02-07 13:36:02 +08:00
<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'
2023-02-07 15:46:45 +08:00
import List from './components/List'
import Detail from './components/Detail'
import Comment from './components/Comment'
2023-02-07 13:36:02 +08:00
export default {
name: 'AppCurriculumManage',
label: '课程管理',
props: {
instance: Function,
dict: Object
},
data () {
return {
2023-02-07 15:46:45 +08:00
component: 'Comment',
2023-02-07 13:36:02 +08:00
params: {},
include: []
}
},
components: {
Add,
List,
2023-02-07 15:46:45 +08:00
Detail,
Comment
2023-02-07 13:36:02 +08:00
},
methods: {
onChange (data) {
if (data.type === 'Add') {
this.component = 'Add'
this.params = data.params
}
2023-02-07 15:46:45 +08:00
if (data.type === 'Comment') {
this.component = 'Comment'
this.params = data.params
}
2023-02-07 13:36:02 +08:00
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>