From 8bdbaee3dccb1e543f6b8cfe64fd9b96b7a1c9c0 Mon Sep 17 00:00:00 2001
From: 13404089107 <puwei@sinata.cn>
Date: 星期一, 31 三月 2025 13:31:53 +0800
Subject: [PATCH] fix,登录页

---
 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