feat:完成登录页面+各种细节

This commit is contained in:
橙子
2023-03-21 23:05:42 +08:00
parent 418f4a4785
commit 4b856c4905
22 changed files with 430 additions and 189 deletions

View File

@@ -1,53 +1,8 @@
<template>
<div class="body-div" id="body">
<div class="left">
<video class="videoBG" autoplay playsinline loop disablepictureinpicture poster="/loginBg.png">
<!-- <source src="/loginBg.mp4" type="video/mp4"> -->
</video>
</div>
<div class="right">
<div class="right-div">
<RouterView />
</div>
</div>
</div>
<div class="box">
<div class="content">
<RouterView/>
</div>
</div>
</template>
<script setup>
import { onMounted } from 'vue';
</script>
<style scoped>
.left
{
background-color: #010413;
}
.right
{
}
.right-div
{
margin-top: 60%;
padding: 2rem;
}
.body-div
{
display: flex;
justify-content: space-between;
height: 930px;
}
.videoBG
{
width:100% ;
}
</style>
<style src="@/assets/styles/login.scss" scoped></style>