diff --git a/src/assets/imgs/icon_bg.png b/src/assets/imgs/icon_bg.png new file mode 100644 index 000000000..6f8fa18f4 Binary files /dev/null and b/src/assets/imgs/icon_bg.png differ diff --git a/src/styles/index.scss b/src/styles/index.scss index 214e80dad..8c771b449 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -60,4 +60,14 @@ legend { // } .el-form-item__label{ color:#1f2225; +} +.login-form .el-input__wrapper{ + border-radius: 10px; + line-height: 50px; + height: 50px; +} +.line{ + background: #1e4dad; + height: 8px; + width: 52px; } \ No newline at end of file diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index 716060b3c..2ac76875b 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -5,13 +5,13 @@ >
-
+
-
{{ t('login.welcome') }}
+
@@ -32,10 +32,10 @@
-
+
@@ -94,11 +94,19 @@ $prefix-cls: #{$namespace}-login; z-index: -1; width: 100%; height: 100%; - background-image: url('@/assets/svgs/login-bg.svg'); - background-position: center; - background-repeat: no-repeat; - content: ''; + // background-image: url('@/assets/svgs/login-bg.svg'); + // background-position: center; + // background-repeat: no-repeat; + // content: ''; } } } +.v-login{ + overflow: hidden; + background-image: url('@/assets/imgs/icon_bg.png'); + background-size: cover; + width: 100%; + height: 100vh; + justify-content: center; +} diff --git a/src/views/Login/components/LoginForm.vue b/src/views/Login/components/LoginForm.vue index 10926853a..986fb9085 100644 --- a/src/views/Login/components/LoginForm.vue +++ b/src/views/Login/components/LoginForm.vue @@ -1,14 +1,6 @@