feat:已审核课程

This commit is contained in:
宋文超
2022-11-21 16:03:31 +08:00
parent 6fabdfe87f
commit 5828a5cccb
4 changed files with 281 additions and 33 deletions

View File

@@ -6,34 +6,26 @@
* @FilePath: /fe-manage/src/views/examine/ProjectReviewed.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<!-- 审核课程页面 -->
<!-- 审核项目页面 -->
<template>
<div class="projectviewed">
</div>
<div class="projectviewed"></div>
</template>
<script>
import { reactive, toRefs, } from "vue";
import { reactive, toRefs } from "vue";
export default {
name: "ProjectViewed",
setup() {
const state = reactive({
});
const state = reactive({});
return {
...toRefs(state),
};
},
};
</script>
<style lang="scss">
.projectviewed {
}
</style>