34 lines
697 B
Vue
34 lines
697 B
Vue
<!-- 作者:cgd 邮箱:349008059@qq.com 时间:2022年03月24日 16:33:32 -->
|
||
<template>
|
||
<a-modal title="培训计划课程" v-model="visible" :footer="null" :closable="true" width="1000px">
|
||
<MyCourseListVue :type="2" :planId="planId"></MyCourseListVue>
|
||
</a-modal>
|
||
</template>
|
||
|
||
<script>
|
||
import MyCourseListVue from './MyCourseList.vue'
|
||
|
||
export default {
|
||
props: {
|
||
planId: {
|
||
type: [String, Number],
|
||
required: false,
|
||
default: ''
|
||
}
|
||
},
|
||
components: { MyCourseListVue },
|
||
data () {
|
||
return {
|
||
visible: false
|
||
}
|
||
},
|
||
mounted () {},
|
||
methods: {
|
||
open () {
|
||
this.visible = true
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
<style lang="scss" scoped></style>
|