ClassDetail.vue
2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<script setup>
import { ref } from 'vue'
import Head from '@/components/head.vue'
const list = ref(['任务', '章节', '讨论', '作业', '考试', '出勤', '记分册', '作业成绩', '知识点'])
const activeNames = ref(['1'])
</script>
<template>
<div class="counter">
<Head></Head>
<div class="box">
<div class="left">
<div class="top">
<img src="@/static/kecheng.png" alt="" />
XXXXXXXXX
</div>
<div class="bottom">
<div class="li" v-for="item in list" :key="item">{{ item }}</div>
</div>
</div>
<div class="right">
<div class="two">XX班级</div>
<div class="box3">进行中</div>
<div class="box4">已结束</div>
<div class="box5">
<div class="end" v-for="item in 8" :key="item">
<div class="notice">通知</div>
<div>签到</div>
</div>
</div>
</div>
</div>
</div>
</template>
<style lang="scss">
.counter {
.box {
margin-top: 20px;
display: flex;
.left {
margin-left: 30px;
width: 20%;
.top {
display: flex;
text-align: center;
flex-direction: column;
width: 180px;
height: 140px;
img {
width: 100%;
height: 90%;
padding: 10px 0;
}
}
.bottom {
margin-top: 20px;
text-align: center;
background-color: #f2f2f2;
width: 180px;
.li {
width: 100%;
height: 40px;
line-height: 40px;
border-bottom: 1px dashed black;
}
.li:last-child {
border-bottom: none;
}
}
}
.right {
width: 70%;
background-color: #f2f2f2;
.two {
padding-left: 20px;
font-weight: 700;
height: 60px;
line-height: 60px;
border-bottom: 1px #dadada solid;
}
.box3 {
padding-left: 20px;
height: 60px;
line-height: 60px;
border-bottom: 1px #dadada solid;
}
.box4 {
background-color: #ffffff;
padding-left: 20px;
height: 60px;
line-height: 60px;
border-bottom: 1px #dadada solid;
}
.box5 {
height: 300px;
overflow-y: scroll;
.end {
background-color: #ffffff;
display: flex;
padding-left: 20px;
height: 60px;
line-height: 60px;
border-bottom: #dadada 1px solid;
.notice {
/* padding-right: 20px;
align-items: center;
justify-items: center; */
margin: 10px;
color: white;
background-color: #169bd5;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 14px;
border-radius: 8px;
}
}
}
}
}
}
</style>