parent
a65f6ba46f
commit
0c4c79412f
@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<CommonBox title="课程安排" class="teaching-center-course-arrangement-style">
|
||||
<a-spin class="course-arrangement-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 课程安排
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-course-arrangement-style {
|
||||
width: 100%;
|
||||
height: 280px !important;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<CommonBox title="校本课程" class="teaching-center-school-base-course-style">
|
||||
<a-spin class="school-base-course-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 校本课程
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-school-base-course-style {
|
||||
width: 100%;
|
||||
height: 280px !important;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<CommonBox title="科研活动" class="teaching-center-science-activities-style">
|
||||
<a-spin class="science-activities-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 科研活动
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-science-activities-style {
|
||||
width: 100%;
|
||||
height: 420px !important;
|
||||
position: relative;
|
||||
margin-top: 50px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<CommonBox title="教研活动" class="teaching-center-teaching-activities-style">
|
||||
<a-spin class="teaching-activities-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 教研活动
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-teaching-activities-style {
|
||||
width: 100%;
|
||||
height: 420px !important;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
@ -1,19 +1,58 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
<div class="teaching-center-style">
|
||||
<div class="column-style">
|
||||
<course-arrangement/>
|
||||
<teaching-check/>
|
||||
</div>
|
||||
<div class="column-style">
|
||||
<school-base-course/>
|
||||
<test-arrangement/>
|
||||
</div>
|
||||
<div class="column-style">
|
||||
<teaching-activities/>
|
||||
<science-activities/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
/*
|
||||
* 教学管理中心
|
||||
* */
|
||||
* 教学管理中心
|
||||
* */
|
||||
import CourseArrangement from './courseArrangement.vue';
|
||||
import TeachingCheck from './teachingCheck.vue';
|
||||
import SchoolBaseCourse from './schoolBaseCourse.vue';
|
||||
import TestArrangement from './testArrangement.vue';
|
||||
import TeachingActivities from './teachingActivities.vue';
|
||||
import ScienceActivities from './scienceActivities.vue';
|
||||
export default{
|
||||
data(){
|
||||
return {}
|
||||
},
|
||||
created(){
|
||||
document.documentElement.style.setProperty('--modTitleOne', '#094193');
|
||||
document.documentElement.style.setProperty('--modTitleTwo', '#094193');
|
||||
},
|
||||
components:{
|
||||
CourseArrangement,
|
||||
TeachingCheck,
|
||||
SchoolBaseCourse,
|
||||
TestArrangement,
|
||||
TeachingActivities,
|
||||
ScienceActivities
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
<style scoped lang="scss">
|
||||
.teaching-center-style{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
.column-style{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 640px;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<CommonBox title="教学检查" class="teaching-center-teaching-check-style">
|
||||
<a-spin class="teaching-check-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 教学检查
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-teaching-check-style {
|
||||
width: 100%;
|
||||
height: 560px !important;
|
||||
position: relative;
|
||||
margin-top: 50px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<CommonBox title="考试安排" class="teaching-center-test-arrangement-style">
|
||||
<a-spin class="test-arrangement-box-style" :spinning="spinning">
|
||||
|
||||
</a-spin>
|
||||
</CommonBox>
|
||||
</template>
|
||||
<script>
|
||||
/*
|
||||
* 考试安排
|
||||
* */
|
||||
import CommonBox from '../secondPages/commonBox.vue';
|
||||
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
spinning: false,
|
||||
listScroll: this.StaticParams.scrollOption,
|
||||
}
|
||||
},
|
||||
components:{
|
||||
CommonBox,
|
||||
ASpin: Spin,
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "../../assets/scss/style";
|
||||
.teaching-center-test-arrangement-style {
|
||||
width: 100%;
|
||||
height: 560px !important;
|
||||
position: relative;
|
||||
margin-top: 50px;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue