直播返修
This commit is contained in:
parent
cb940f9973
commit
be094d44f4
@ -14,10 +14,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="takehour">
|
<div class="cancel">取消直播</div>
|
||||||
参加时长
|
|
||||||
<div>30min</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
@ -29,10 +26,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="takehour">
|
<div class="refuse">已拒绝</div>
|
||||||
参加时长
|
|
||||||
<div>30min</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item">
|
<div class="item">
|
||||||
@ -63,48 +57,6 @@
|
|||||||
<div>30min</div>
|
<div>30min</div>
|
||||||
</div>
|
</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 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>
|
||||||
@ -161,6 +113,20 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.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;
|
||||||
|
}
|
||||||
.button {
|
.button {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 260px;
|
width: 260px;
|
||||||
@ -188,5 +154,10 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from "vue";
|
import { defineComponent } from "vue";
|
||||||
|
|
||||||
export default defineComponent({});
|
export default defineComponent({
|
||||||
|
setup(){
|
||||||
|
|
||||||
|
return{}
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
@ -1,27 +1,27 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="video">
|
<div class="video">
|
||||||
<video src=""></video>
|
<video src=""></video>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.video{
|
.video {
|
||||||
width: 797px;
|
width: 976px;
|
||||||
height: 449px;
|
height: 563px;
|
||||||
border-radius: 17px;
|
border-radius: 18px 18px 0px 0px;
|
||||||
background-color: #0f0;
|
background-color: #0f0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
>video{
|
> video {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from "vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
setup(){
|
setup() {
|
||||||
console.log(1)
|
console.log(1);
|
||||||
}
|
},
|
||||||
})
|
});
|
||||||
</script>
|
</script>
|
27
src/components/LivePlaying.vue
Normal file
27
src/components/LivePlaying.vue
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<template>
|
||||||
|
<div class="video">
|
||||||
|
<video src=""></video>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.video{
|
||||||
|
width: 797px;
|
||||||
|
height: 449px;
|
||||||
|
border-radius: 17px;
|
||||||
|
background-color: #0f0;
|
||||||
|
// overflow: hidden;
|
||||||
|
>video{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
setup(){
|
||||||
|
console.log(1)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
143
src/components/LiveingWatcher.vue
Normal file
143
src/components/LiveingWatcher.vue
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<template>
|
||||||
|
<div class="cont">
|
||||||
|
<div class="title">
|
||||||
|
<div>上课人员</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info">
|
||||||
|
<div class="item">
|
||||||
|
<div style="display:flex">
|
||||||
|
<div class="stuinfo">
|
||||||
|
<div>andy</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div >
|
||||||
|
<img src="@/static/images/watchermanage.png" alt="" class="icons">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<div style="display:flex">
|
||||||
|
<div class="stuinfo">
|
||||||
|
<div>andy</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div >
|
||||||
|
<img src="@/static/images/watchermanage.png" alt="" class="icons">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<div style="display:flex">
|
||||||
|
<div class="stuinfo">
|
||||||
|
<div>andy</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div >
|
||||||
|
<img src="@/static/images/watchermanage.png" alt="" class="icons">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="item">
|
||||||
|
<div style="display:flex">
|
||||||
|
<div class="stuinfo">
|
||||||
|
<div>andy</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div >
|
||||||
|
<img src="@/static/images/watchermanage.png" alt="" class="icons">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.cont {
|
||||||
|
width: 316px;
|
||||||
|
height: 630px;
|
||||||
|
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;
|
||||||
|
height: 80px;
|
||||||
|
line-height: 80px;
|
||||||
|
font-size: 10px;
|
||||||
|
border-bottom: 1px solid #EEEEEE;
|
||||||
|
.icons{
|
||||||
|
width: 61px;
|
||||||
|
height: 23px;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.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";
|
||||||
|
|
||||||
|
export default defineComponent({});
|
||||||
|
</script>
|
BIN
src/static/images/watchermanage.png
Normal file
BIN
src/static/images/watchermanage.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
@ -12,9 +12,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="list" v-if="tabindex==1">
|
<div class="list" v-if="tabindex==1">
|
||||||
<LiveItem></LiveItem>
|
<LiveItem :type="2"></LiveItem>
|
||||||
<LiveItem></LiveItem>
|
<LiveItem :type="2"></LiveItem>
|
||||||
<LiveItem></LiveItem>
|
<LiveItem :type="2"></LiveItem>
|
||||||
<LiveItem></LiveItem>
|
<LiveItem></LiveItem>
|
||||||
<LiveItem></LiveItem>
|
<LiveItem></LiveItem>
|
||||||
<LiveItem></LiveItem>
|
<LiveItem></LiveItem>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="livedetail">
|
<div class="livedetail">
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<div class="liveplay">
|
<div class="liveplay">
|
||||||
<VideoPlay></VideoPlay>
|
<liveplay></liveplay>
|
||||||
<div class="liveinfo">
|
<div class="liveinfo">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div>
|
<div>
|
||||||
@ -34,11 +34,13 @@
|
|||||||
width: 1320px;
|
width: 1320px;
|
||||||
height: 563px;
|
height: 563px;
|
||||||
.info {
|
.info {
|
||||||
|
width: 1321px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content:center;
|
||||||
.liveplay {
|
.liveplay {
|
||||||
background: white;
|
background: white;
|
||||||
border-radius: 18px;
|
border-radius: 18px;
|
||||||
|
margin-right: 29px;
|
||||||
.liveinfo{
|
.liveinfo{
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@ -81,13 +83,13 @@
|
|||||||
</style>
|
</style>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from "vue";
|
import { defineComponent } from "vue";
|
||||||
import VideoPlay from "@/components/VideoPlay.vue";
|
import liveplay from "@/components/LivePlay.vue"
|
||||||
import LiveCount from "@/components/LiveCount.vue";
|
import LiveCount from "@/components/LiveCount.vue";
|
||||||
import VideoReview from "@/components/VideoReview.vue";
|
import VideoReview from "@/components/VideoReview.vue";
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
VideoPlay,
|
|
||||||
LiveCount,
|
LiveCount,
|
||||||
|
liveplay,
|
||||||
VideoReview,
|
VideoReview,
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
|
@ -14,9 +14,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<LiveingCount></LiveingCount>
|
<LiveingWatcher></LiveingWatcher>
|
||||||
<div class="liveplay">
|
<div class="LivePlaying">
|
||||||
<LivePlay></LivePlay>
|
<LivePlaying></LivePlaying>
|
||||||
<div class="comment">
|
<div class="comment">
|
||||||
<div class="commentitem">
|
<div class="commentitem">
|
||||||
<span>13:32:30</span>
|
<span>13:32:30</span>
|
||||||
@ -94,7 +94,7 @@
|
|||||||
.info {
|
.info {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
.liveplay {
|
.LivePlaying {
|
||||||
border-radius: 18px;
|
border-radius: 18px;
|
||||||
margin: 0 35px;
|
margin: 0 35px;
|
||||||
.comment {
|
.comment {
|
||||||
@ -191,13 +191,13 @@
|
|||||||
</style>
|
</style>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from "vue";
|
import { defineComponent } from "vue";
|
||||||
import LivePlay from "@/components/LivePlay.vue";
|
import LivePlaying from "@/components/LivePlaying.vue";
|
||||||
import LiveingCount from "@/components/LiveingCount.vue";
|
import LiveingWatcher from "@/components/LiveingWatcher.vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
components: {
|
||||||
LivePlay,
|
LivePlaying,
|
||||||
LiveingCount,
|
LiveingWatcher,
|
||||||
},
|
},
|
||||||
setup() {
|
setup() {
|
||||||
console.log(1);
|
console.log(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user