dbsd_kczx/src/views/site/studentWdkc/studentWdkc.vue

31 lines
608 B
Vue
Raw Normal View History

2024-05-09 15:26:32 +08:00
<template>
<div class="indexBackClass" >
<div style="margin-top: 20px;">
<span style="margin-left: 30px;font-size: 24px;font-weight: 600;">我的课程</span>
</div>
<div>
<a-row>
<a-col :span="24"></a-col>
</a-row>
</div>
</div>
</template>
<script lang="ts" setup>
import { defHttp } from '/@/utils/http/axios';
import { ref, onMounted } from 'vue';
import { getSysConfig } from '/@/views/site/utils/index';
//进入就加载
onMounted(() => {
});
</script>
<style lang="less" scoped>
.indexBackClass{
background: #fff;
margin: 20px 0;
}
</style>