parent
736e247aed
commit
f8e44059ce
After Width: | Height: | Size: 133 KiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 211 KiB |
After Width: | Height: | Size: 411 KiB |
After Width: | Height: | Size: 271 KiB |
After Width: | Height: | Size: 403 KiB |
@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>
|
||||
图文管理
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default{
|
||||
data(){
|
||||
return {}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
@ -1,29 +1,96 @@
|
||||
<template>
|
||||
<CommonBox title="学生活动" class="student-activities-box-style">
|
||||
|
||||
|
||||
<div class="student-activities-content-style">
|
||||
<div class="window-left-style">
|
||||
<div class="left-top-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity01.jpg')" style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
<div class="left-bottom-style">
|
||||
<div class="item-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity02.jpg')"
|
||||
style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
<div class="item-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity03.jpg')"
|
||||
style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="window-right-style">
|
||||
<div class="right-item-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity04.jpg')" style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
<div class="right-item-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity05.jpg')" style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
<div class="right-item-style">
|
||||
<img :src="require('../../../assets/images/window/studentActivity06.jpg')" style="width: 100%;height: 100%"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</CommonBox>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
/*
|
||||
* 学生活动
|
||||
* */
|
||||
* 学生活动
|
||||
* */
|
||||
import CommonBox from '../../secondPages/commonBox.vue';
|
||||
export default{
|
||||
data(){
|
||||
return {}
|
||||
},
|
||||
components:{
|
||||
components: {
|
||||
CommonBox
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.student-activities-box-style{
|
||||
.student-activities-box-style {
|
||||
width: 600px;
|
||||
height: 380px;
|
||||
display: flex;
|
||||
.student-activities-content-style {
|
||||
width: 100%;
|
||||
height: 345px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.window-left-style {
|
||||
width: 370px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
.left-top-style {
|
||||
width: 100%;
|
||||
height: 226px;
|
||||
/*padding: 5px;*/
|
||||
}
|
||||
.left-bottom-style {
|
||||
width: 100%;
|
||||
height: 108px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.item-style {
|
||||
width: 180px;
|
||||
height: 108px;
|
||||
/*padding: 5px;*/
|
||||
}
|
||||
}
|
||||
}
|
||||
.window-right-style {
|
||||
width: calc(100% - 380px);
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
.right-item-style {
|
||||
width: 100%;
|
||||
height: 108px;
|
||||
/*padding: 5px;*/
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue