From c828cd50c7aefcccb23809ce5d2d21abf6a688ef Mon Sep 17 00:00:00 2001 From: AshenOneOrz Date: Thu, 17 Dec 2020 22:14:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?style(pagefooter):=20=E4=BF=AE=E6=94=B9=20b?= =?UTF-8?q?asic=20=E5=88=86=E6=94=AF=E7=9A=84=E9=A1=B5=E8=84=9A=20copyrigh?= =?UTF-8?q?t=20=E7=89=88=E6=9D=83=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/footer/PageFooter.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layouts/footer/PageFooter.vue b/src/layouts/footer/PageFooter.vue index 6689c1c..3932472 100644 --- a/src/layouts/footer/PageFooter.vue +++ b/src/layouts/footer/PageFooter.vue @@ -26,6 +26,9 @@ export default { .copyright{ color: @text-color-second; font-size: 14px; + i { + margin: 0 6px; + } } .links{ margin-bottom: 8px; From 829a41b17d553f3c83aad92cd8a89a97bf0609c1 Mon Sep 17 00:00:00 2001 From: AshenOneOrz Date: Thu, 17 Dec 2020 22:16:01 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix(login):=20=E4=BF=AE=E5=A4=8D=20login=20?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=20error=20alert=20=E5=85=B3=E9=97=AD?= =?UTF-8?q?=E5=90=8E=E5=86=8D=E6=AC=A1=E8=BE=93=E9=94=99=E5=AF=86=E7=A0=81?= =?UTF-8?q?=E4=B8=8D=E4=BC=9A=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/Login.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/login/Login.vue b/src/pages/login/Login.vue index 888665d..6efe388 100644 --- a/src/pages/login/Login.vue +++ b/src/pages/login/Login.vue @@ -11,7 +11,7 @@ - + { const routesConfig = result.data.data loadRoutes(routesConfig) - this.$router.push('/dashboard/workplace') + this.$router.push('/demo') this.$message.success(loginRes.message, 3) }) } else { this.error = loginRes.message } + }, + onClose() { + this.error = false } } }