From 5174caed77c52b5f46a0c6a72d629dc5ea5b07cf Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期一, 31 三月 2025 14:00:01 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- src/views/login/index.vue | 30 ++++++++++++++++++++++++++++-- 1 files changed, 28 insertions(+), 2 deletions(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 140ed03..ab177ad 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -1,5 +1,9 @@ <template> - <div>1</div> + <div class="login-page"> + <div class="login-content"> + + </div> + </div> </template> <script> export default { @@ -13,4 +17,26 @@ } } </script> -<style scoped></style> +<style scoped lang="less"> +.login-page { + width: 100%; + height: 100vh; + background: url('../../assets/login/backGround@2x.png') no-repeat center center; + background-size: 100% 100%; + display: flex; + justify-content: center; + align-items: center; + + .login-content { + width: 550px; + height: 694px; + background: #fff; + box-shadow: 0px 20px 30px 0px rgba(0, 97, 95, 0.2); + border-radius: 20px; + border: 4px solid #FFFFFF; + } + + + +} +</style> -- Gitblit v1.7.1