mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-23 09:46:43 +08:00
18 lines
456 B
Vue
18 lines
456 B
Vue
<template>
|
||
<div class="u-page">
|
||
<div style="text-align: center;padding-top: 100;">我的课程报名记录,因为后续有课程报名的审核,所以这里要学习报名记录,当前状态都是已通过</div>
|
||
<Remark :fixed="false">
|
||
一期之后会有报名流程,那时就会有报名不通过的记录了
|
||
</Remark>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'courseIndex'
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style>
|