|
|
|
@ -1,7 +1,88 @@
|
|
|
|
|
<template>
|
|
|
|
|
<CommonBox title="校本课程" class="teaching-center-school-base-course-style">
|
|
|
|
|
<a-spin class="school-base-course-box-style" :spinning="spinning">
|
|
|
|
|
<div class="select-top-style">
|
|
|
|
|
<span :class="'select-item-style border-right-style' + (selectType === 1?' select-style':'')"
|
|
|
|
|
@click="typeChange(1)">特色课程</span>
|
|
|
|
|
<span :class="'select-item-style border-right-style' + (selectType === 2?' select-style':'')"
|
|
|
|
|
@click="typeChange(2)">劳动课程</span>
|
|
|
|
|
<span :class="'select-item-style' + (selectType === 3?' select-style':'')"
|
|
|
|
|
@click="typeChange(3)">思政课程</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="school-base-course-content-style">
|
|
|
|
|
<a-tabs :activeKey="paneKey">
|
|
|
|
|
<a-tab-pane :key="1" tab="Tab 1">
|
|
|
|
|
<div class="special-content-style">
|
|
|
|
|
<div class="top-style">
|
|
|
|
|
<div class="box-style">
|
|
|
|
|
<img src="../../assets/images/teachingCenter/communityActivities.svg" style="width: 20px;height: 20px"/>
|
|
|
|
|
<span>社团风采</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-right-style"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content-style">
|
|
|
|
|
<div class="item-content-style">
|
|
|
|
|
<div class="item-row-style item-title-style">
|
|
|
|
|
<img src="../../assets/images/teachingCenter/special.svg" style="width: 16px;height: 16px"/>科技社团
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-scroll-content-style">
|
|
|
|
|
<vue-scroll key="special_scroll" class="table-boday-style" :ops="listScroll" style="height: 100%">
|
|
|
|
|
<div class="item-row-style" v-for="item in specialList">
|
|
|
|
|
{{item.title}}
|
|
|
|
|
</div>
|
|
|
|
|
</vue-scroll>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-content-style">
|
|
|
|
|
<div class="item-row-style item-title-style">
|
|
|
|
|
<img src="../../assets/images/teachingCenter/art.svg" style="width: 16px;height: 16px"/>艺术社团
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-scroll-content-style">
|
|
|
|
|
<vue-scroll key="art_scroll" class="table-boday-style" :ops="listScroll" style="height: 100%">
|
|
|
|
|
<div class="item-row-style" v-for="item in artList">
|
|
|
|
|
{{item.title}}
|
|
|
|
|
</div>
|
|
|
|
|
</vue-scroll>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-content-style">
|
|
|
|
|
<div class="item-row-style item-title-style">
|
|
|
|
|
<img src="../../assets/images/teachingCenter/sports.svg" style="width: 16px;height: 16px"/>体育社团
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-scroll-content-style">
|
|
|
|
|
<vue-scroll key="sports_scroll" class="table-boday-style" :ops="listScroll" style="height: 100%">
|
|
|
|
|
<div class="item-row-style" v-for="item in sportsList">
|
|
|
|
|
{{item.title}}
|
|
|
|
|
</div>
|
|
|
|
|
</vue-scroll>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item-tips-style">
|
|
|
|
|
<div class="point-style"></div>
|
|
|
|
|
<div class="left-line-style"></div>
|
|
|
|
|
<div class="right-line-style"></div>
|
|
|
|
|
<div class="text-box-style">
|
|
|
|
|
<div class="text-title-style">特色课程简介</div>
|
|
|
|
|
<div class="text-content-style">
|
|
|
|
|
特色课程体系的建构是对国家课程的充分利用和有效补充,从宏观上看,它既可以推进教育民主化、多样化的发展进程,也可以推进国家素质教育改革的深化,还可以促进高中新课改的顺利实施;微观方面,它在促进学生全方位成长的同时,可以带动教师的专业进步,从而形成学校蓬勃发展的态势。
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a-tab-pane>
|
|
|
|
|
<a-tab-pane :key="2" tab="Tab 2">
|
|
|
|
|
<div class="labour-content-style">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</a-tab-pane>
|
|
|
|
|
<a-tab-pane :key="3" tab="Tab 3">
|
|
|
|
|
<div class="politics-content-style">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</a-tab-pane>
|
|
|
|
|
</a-tabs>
|
|
|
|
|
</div>
|
|
|
|
|
</a-spin>
|
|
|
|
|
</CommonBox>
|
|
|
|
|
</template>
|
|
|
|
@ -10,17 +91,32 @@
|
|
|
|
|
* 校本课程
|
|
|
|
|
* */
|
|
|
|
|
import CommonBox from '../secondPages/commonBox.vue';
|
|
|
|
|
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
|
|
|
|
import {Icon, Spin, List, Empty, Tabs} from 'ant-design-vue';
|
|
|
|
|
export default{
|
|
|
|
|
data(){
|
|
|
|
|
return {
|
|
|
|
|
spinning: false,
|
|
|
|
|
listScroll: this.StaticParams.scrollOption,
|
|
|
|
|
selectType: 1,//1 周历 2 校历
|
|
|
|
|
paneKey: 1,
|
|
|
|
|
specialList:[{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"}],
|
|
|
|
|
artList:[{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"}],
|
|
|
|
|
sportsList:[{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"},{title:"机器人社团"}]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
typeChange: function (type) {
|
|
|
|
|
if (this.selectType !== type) {
|
|
|
|
|
this.selectType = type;
|
|
|
|
|
this.paneKey = type;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components:{
|
|
|
|
|
CommonBox,
|
|
|
|
|
ASpin: Spin,
|
|
|
|
|
ATabs: Tabs,
|
|
|
|
|
ATabPane: Tabs.TabPane,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
@ -28,7 +124,184 @@
|
|
|
|
|
@import "../../assets/scss/style";
|
|
|
|
|
.teaching-center-school-base-course-style {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 280px !important;
|
|
|
|
|
height: 320px !important;
|
|
|
|
|
position: relative;
|
|
|
|
|
.school-base-course-box-style {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
/deep/ .ant-spin-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.select-top-style {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
/*position: absolute;*/
|
|
|
|
|
/*right: 0;*/
|
|
|
|
|
.select-item-style {
|
|
|
|
|
color: #1379c8;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.border-right-style {
|
|
|
|
|
border-right: 1px solid #1379c8;
|
|
|
|
|
}
|
|
|
|
|
.select-style {
|
|
|
|
|
color: $color-default-bright;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.school-base-course-content-style {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
|
/*min-height: 350px;*/
|
|
|
|
|
/*margin-top: 10px;*/
|
|
|
|
|
.ant-tabs {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.ant-tabs-bar {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-tabs-content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.ant-tabs-tabpane {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.special-content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.top-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.box-style{
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
background: -webkit-linear-gradient(to right,#1459c1, #031b5c); /* Safari 5.1 - 6.0 */
|
|
|
|
|
background: -o-linear-gradient(to right,#1459c1, #031b5c); /* Opera 11.1 - 12.0 */
|
|
|
|
|
background: -moz-linear-gradient(to right,#1459c1, #031b5c); /* Firefox 3.6 - 15 */
|
|
|
|
|
background: linear-gradient(to right,#1459c1, #031b5c); /* 标准的语法(必须放在最后) */
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
span{
|
|
|
|
|
color: $color-default-bright;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.box-right-style{
|
|
|
|
|
width: 0; height: 0;
|
|
|
|
|
border-color: transparent #031b5c; /*上下颜色 左右颜色*/
|
|
|
|
|
border-width: 0 0 25px 25px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.item-content-style{
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border: 1px dashed $color-default-bright;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.item-row-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border-bottom: 1px dashed white;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
.item-title-style{
|
|
|
|
|
color: #F59A23;
|
|
|
|
|
}
|
|
|
|
|
.item-scroll-content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.item-tips-style{
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
/* border: 1px dashed $color-default-bright;*/
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
.point-style{
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background-color: $color-default-bright;
|
|
|
|
|
}
|
|
|
|
|
.left-line-style{
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: $color-default-bright;
|
|
|
|
|
transform: rotateZ(-50deg);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 25px;
|
|
|
|
|
left: 55px;
|
|
|
|
|
}
|
|
|
|
|
.right-line-style{
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: $color-default-bright;
|
|
|
|
|
transform: rotateZ(50deg);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 25px;
|
|
|
|
|
left: 92px;
|
|
|
|
|
}
|
|
|
|
|
.text-box-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 190px;
|
|
|
|
|
border: 1px dashed $color-default-bright;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
.text-title-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
color: #F59A23;
|
|
|
|
|
}
|
|
|
|
|
.text-content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
|
color: $color-default-bright;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.labour-content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.politics-content-style{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|