31 lines
608 B
Vue
31 lines
608 B
Vue
|
<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>
|