layout-a.vue 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <script setup lang="ts">
  2. import Header from './header/header.vue';
  3. </script>
  4. <template>
  5. <div class="layout-container">
  6. <div class="layout-content">
  7. <Header />
  8. <router-view />
  9. </div>
  10. <footer class="layout-footer">
  11. <div class="footer-content">
  12. <p class="copyright">
  13. © 2026 YIMAGONGFANG Limited corporate. All rights reserved.
  14. </p>
  15. </div>
  16. </footer>
  17. </div>
  18. </template>
  19. <style lang="scss" scoped>
  20. .layout-container {
  21. position: relative;
  22. min-height: 100vh;
  23. background: url('@/assets/image/bg.png') no-repeat center;
  24. background-size: cover;
  25. }
  26. .layout-content {
  27. max-width: 1200px;
  28. padding-top: 32px;
  29. padding-bottom: 60px;
  30. margin: 0 auto;
  31. }
  32. .layout-footer {
  33. position: fixed;
  34. right: 0;
  35. bottom: 29px;
  36. left: 0;
  37. z-index: 10;
  38. }
  39. .footer-content {
  40. display: flex;
  41. justify-content: flex-end;
  42. max-width: 1200px;
  43. margin: 0 auto;
  44. }
  45. .copyright {
  46. font-size: 13px;
  47. color: #65605e;
  48. }
  49. </style>