style:增加审核页面

This commit is contained in:
lixg
2022-11-16 21:29:54 +08:00
parent 9889a5d3c9
commit 427a9fb83f
7 changed files with 279 additions and 45 deletions

View File

@@ -0,0 +1,39 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2022-11-16 20:59:06
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-11-16 21:08:27
* @FilePath: /fe-manage/src/views/examine/CourseReviewed.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%A
-->
<!-- 已审核课程页面 -->
<template>
<div class="coursereviewed">
</div>
</template>
<script>
import { reactive, toRefs, } from "vue";
export default {
name: "CoursereViewed",
setup() {
const state = reactive({
});
return {
...toRefs(state),
};
},
};
</script>
<style lang="scss">
.coursereviewed {
}
</style>