2020-10-10 03:33:21 +00:00
|
|
|
<template>
|
|
|
|
<div class="cont">
|
|
|
|
<div class="title">
|
|
|
|
<div>上课学生</div>
|
|
|
|
<div class="more">查看详情</div>
|
|
|
|
</div>
|
|
|
|
<div class="info">
|
|
|
|
<div class="item">
|
|
|
|
<div style="display:flex">
|
|
|
|
<img src="" alt="" />
|
|
|
|
<div class="stuinfo">
|
|
|
|
<div>andy</div>
|
|
|
|
<div class="lessonname">英语 A1</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-10-10 07:31:18 +00:00
|
|
|
<div class="cancel">取消直播</div>
|
2020-10-10 03:33:21 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="item">
|
|
|
|
<div style="display:flex">
|
|
|
|
<img src="" alt="" />
|
|
|
|
<div class="stuinfo">
|
|
|
|
<div>andy</div>
|
|
|
|
<div class="lessonname">英语 A1</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-10-10 07:31:18 +00:00
|
|
|
<div class="refuse">已拒绝</div>
|
2020-10-10 03:33:21 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="item">
|
|
|
|
<div style="display:flex">
|
|
|
|
<img src="" alt="" />
|
|
|
|
<div class="stuinfo">
|
|
|
|
<div>andy</div>
|
|
|
|
<div class="lessonname">英语 A1</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="takehour">
|
|
|
|
参加时长
|
|
|
|
<div>30min</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="item">
|
|
|
|
<div style="display:flex">
|
|
|
|
<img src="" alt="" />
|
|
|
|
<div class="stuinfo">
|
|
|
|
<div>andy</div>
|
|
|
|
<div class="lessonname">英语 A1</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="takehour">
|
|
|
|
参加时长
|
|
|
|
<div>30min</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.cont {
|
|
|
|
width: 316px;
|
|
|
|
height: 563px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 17px;
|
|
|
|
padding: 0 28px;
|
|
|
|
position: relative;
|
|
|
|
overflow: auto;
|
|
|
|
.title {
|
|
|
|
padding: 23px 0 11px 0;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #111;
|
|
|
|
line-height: 1;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
.more {
|
|
|
|
color: #999999;
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 23px;
|
|
|
|
font-size: 10px;
|
|
|
|
.stuinfo {
|
|
|
|
margin: auto 0;
|
|
|
|
margin-left: 11px;
|
|
|
|
color: #111111;
|
|
|
|
.lessonname {
|
|
|
|
color: #666666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.takehour {
|
|
|
|
color: #08ae98;
|
|
|
|
font-size: 11px;
|
|
|
|
margin: auto 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
> div>img {
|
|
|
|
width: 57px;
|
|
|
|
height: 57px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #0f0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-10 07:31:18 +00:00
|
|
|
.refuse{
|
|
|
|
color: #D22C2E;
|
|
|
|
margin:auto 0;
|
|
|
|
}
|
|
|
|
.cancel{
|
|
|
|
margin:auto 0;
|
|
|
|
width: 57px;
|
|
|
|
height: 23px;
|
|
|
|
border: 1px solid #09AE99;
|
|
|
|
line-height: 23px;
|
|
|
|
text-align: center;
|
|
|
|
color: #09AE99;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2020-10-10 03:33:21 +00:00
|
|
|
.button {
|
|
|
|
position: absolute;
|
|
|
|
width: 260px;
|
|
|
|
bottom: 28px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
> div {
|
|
|
|
width: 114px;
|
|
|
|
height: 23px;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 10px;
|
|
|
|
color: #fff;
|
|
|
|
line-height: 23px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.modify {
|
|
|
|
background-color: #08ae98;
|
|
|
|
}
|
|
|
|
.del {
|
|
|
|
background-color: #d12c2e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from "vue";
|
|
|
|
|
2020-10-10 07:31:18 +00:00
|
|
|
export default defineComponent({
|
|
|
|
setup(){
|
|
|
|
|
|
|
|
return{}
|
|
|
|
}
|
|
|
|
});
|
2020-10-10 03:33:21 +00:00
|
|
|
</script>
|