40 lines
652 B
Vue
40 lines
652 B
Vue
|
|
<template>
|
||
|
|
<div class="videoManage">
|
||
|
|
<div class="left">
|
||
|
|
<VideoList></VideoList>
|
||
|
|
</div>
|
||
|
|
<div class="right">
|
||
|
|
<VideoPlayer></VideoPlayer>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import VideoList from "@/views/sevenLargeScreen/videoManagement/videoList.vue";
|
||
|
|
import VideoPlayer from "@/views/sevenLargeScreen/videoManagement/videoPlayer.vue";
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
VideoList,
|
||
|
|
VideoPlayer
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.videoManage {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
.left {
|
||
|
|
width: 17%;
|
||
|
|
height: 100%;
|
||
|
|
// background: pink;
|
||
|
|
}
|
||
|
|
.right {
|
||
|
|
margin-left: 1%;
|
||
|
|
width: 83%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|