From 6601c46708708abc5044e91eac5189a1a0127d96 Mon Sep 17 00:00:00 2001 From: zhcnyuyang Date: Fri, 2 May 2025 15:16:32 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=88=9B=E5=BB=BA=E6=88=90?= =?UTF-8?q?=E5=8A=9F=EF=BC=8C=E8=B7=AF=E7=94=B1=E5=8A=9F=E8=83=BD=E5=8F=AF?= =?UTF-8?q?=E7=94=A8=EF=BC=8C=E6=B7=BB=E5=8A=A0404=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 23 +++++++++++++++++++---- src/components/ContactUs.vue | 31 +++++++++++++++++++++++++++++-- src/components/Footer.vue | 1 + src/components/Homepage.vue | 5 ++++- src/components/Toolbar.vue | 4 ++-- src/components/Tools/Err404.vue | 13 +++++++++++++ src/main.js | 13 ++++++++++++- src/router.js | 26 ++++++++++++++++++++++++++ 8 files changed, 106 insertions(+), 10 deletions(-) create mode 100644 src/components/Tools/Err404.vue create mode 100644 src/router.js diff --git a/src/App.vue b/src/App.vue index d788cc8..c5284d2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,9 +6,14 @@ import Toolbar from './components/Toolbar.vue' @@ -23,14 +28,24 @@ import Toolbar from './components/Toolbar.vue' flex-direction: column; min-height: 100vh; } +#defaultcontainer{ + display: flex; + flex-direction: column; + min-height: 100vh; +} #content{ + display: flex; position: relative; flex:1; width: 100%; min-height: 100%; } -@include media-breakpoint-between(xs, sm) { +#footer{ + margin-top: 0px; +} + +@include media-breakpoint-between(xs, md) { } @include media-breakpoint-between(md, xl) { diff --git a/src/components/ContactUs.vue b/src/components/ContactUs.vue index 773b41e..244d241 100644 --- a/src/components/ContactUs.vue +++ b/src/components/ContactUs.vue @@ -1,5 +1,12 @@ -