diff --git a/web/src/view/login/login.vue b/web/src/view/login/login.vue index 3808fd2c05de92ab13523bee917d81fce26d1078..7a40f43ef04c74a259a4577d8470eb669a7730f8 100644 --- a/web/src/view/login/login.vue +++ b/web/src/view/login/login.vue @@ -82,7 +82,7 @@ /> @@ -110,8 +110,8 @@ export default { callback(); } }; - return { + curYear: 0, lock: "lock", loginForm: { username: "admin", @@ -130,6 +130,7 @@ export default { }, created() { this.loginVefify(); + this.curYear = new Date().getFullYear(); }, methods: { ...mapActions("user", ["LoginIn"]), @@ -216,6 +217,8 @@ export default { } .container { + position: relative; + overflow: auto; width: 100%; min-height: 100%; background: #f0f2f5 url(~@/assets/background.svg) no-repeat 50%; @@ -227,6 +230,7 @@ export default { .top { text-align: center; + margin-top: 20px; .header { height: 44px; line-height: 44px; @@ -271,12 +275,11 @@ export default { } .footer { - position: absolute; + position: relative; width: 100%; - padding: 0 16px; - margin: 120px 0 24px; + padding: 0 20px; + margin: 40px 0 10px; text-align: center; - bottom: 100px; .links { margin-bottom: 8px; font-size: 14px; diff --git a/web/src/view/login/register.vue b/web/src/view/login/register.vue index 21d4cb8fe45ef2a5160a44b380f62cee8d846c40..7442ce76dd3240ea489212e46686b7a43114e0e0 100644 --- a/web/src/view/login/register.vue +++ b/web/src/view/login/register.vue @@ -217,6 +217,7 @@ export default { .top { text-align: center; + margin-top: -50px; .header { height: 44px; line-height: 44px; @@ -261,12 +262,10 @@ export default { } .footer { - position: absolute; + position: relative; width: 100%; - padding: 0 16px; - margin: 120px 0 24px; + margin: 40px 0 0 0; text-align: center; - bottom: 100px; .links { margin-bottom: 8px; font-size: 14px;