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 21:00:40
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2022-11-16 21:09:49
* @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>
</template>
<script>
import { reactive, toRefs, } from "vue";
export default {
name: "ProjectViewed",
setup() {
const state = reactive({
});
return {
...toRefs(state),
};
},
};
</script>
<style lang="scss">
.projectviewed {
}
</style>