b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<div>
<back-box>
<template slot="title">
<span>单课分析</span>
</template>
</back-box>
<div class="tab-box">
<span class="tab-item active">答题表现</span>
<span class="tab-item">学生问答表现</span>
<span class="tab-item">学生互动表现</span>
<span class="tab-item">签到明细</span>
</div>
</div>
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<style lang="scss" scoped>
.tab-box {
width: 800px;
margin: 20px auto;
background: #f8f8f8;
border-radius: 20px;
display: flex;
.tab-item {
flex: 1;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
color: #666;
font-weight: 500;
background: transparent;
border-radius: 20px;
&.active {
background: #667ffd;
color: #fff;
}
}
}
|