Sfoglia il codice sorgente

feat: 新增版权信息

lixuan 3 settimane fa
parent
commit
4f788377be
1 ha cambiato i file con 29 aggiunte e 0 eliminazioni
  1. 29 0
      apps/web-velofex/src/layouts/layout-a.vue

+ 29 - 0
apps/web-velofex/src/layouts/layout-a.vue

@@ -8,11 +8,19 @@ import Header from './header/header.vue';
       <Header />
       <router-view />
     </div>
+    <footer class="layout-footer">
+      <div class="footer-content">
+        <p class="copyright">
+          © 2026 YIMAGONGFANG Limited corporate. All rights reserved.
+        </p>
+      </div>
+    </footer>
   </div>
 </template>
 
 <style lang="scss" scoped>
 .layout-container {
+  position: relative;
   min-height: 100vh;
   background: url('@/assets/image/bg.png') no-repeat center;
   background-size: cover;
@@ -21,6 +29,27 @@ import Header from './header/header.vue';
 .layout-content {
   max-width: 1200px;
   padding-top: 32px;
+  padding-bottom: 60px;
   margin: 0 auto;
 }
+
+.layout-footer {
+  position: fixed;
+  right: 0;
+  bottom: 29px;
+  left: 0;
+  z-index: 10;
+}
+
+.footer-content {
+  display: flex;
+  justify-content: flex-end;
+  max-width: 1200px;
+  margin: 0 auto;
+}
+
+.copyright {
+  font-size: 13px;
+  color: #65605e;
+}
 </style>