App.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div id="app" ref="app">
  3. <Header v-if="!showHeader" class="Header" />
  4. <Navbar v-if="!showNavbar" class="Navbar" />
  5. <Content class="Content" />
  6. <Footer class="Footer" v-if="routePath == '/index'" />
  7. <Abandon v-model="abandon.show" />
  8. <isLogin v-model="is_login.show" />
  9. <ConfirmPopup />
  10. <ToTop class="FixedBtn" :style="{ left: btnLeft + 'px' }" />
  11. <ToContribute class="FixedBtn" :style="{ left: btnLeft + 'px' }" />
  12. <ToContact class="FixedBtn" :style="{ left: btnLeft + 'px' }" />
  13. </div>
  14. </template>
  15. <script>
  16. import Header from "@/components/layout/Header.vue";
  17. import Navbar from "@/components/layout/Navbar.vue";
  18. import Content from "@/components/layout/Content.vue";
  19. import Footer from "@/components/layout/Footer.vue";
  20. import Abandon from "@/components/module/abandon.vue"; // 放弃投稿
  21. import IsLogin from "@/components/module/is-login.vue"; // 未登录
  22. import ConfirmPopup from "@/components/module/confirm-popup.vue"; // 确认-通用
  23. import ToTop from "@/components/module/to-top.vue"; // 回到顶部
  24. import ToContribute from "@/components/module/to-contribute.vue"; // 发布投稿
  25. import ToContact from "@/components/module/to-contact.vue";
  26. import { mapState } from "vuex";
  27. export default {
  28. name: "app",
  29. components: {
  30. Header,
  31. Navbar,
  32. Content,
  33. Footer,
  34. Abandon,
  35. IsLogin,
  36. ConfirmPopup,
  37. ToTop,
  38. ToContribute,
  39. ToContact,
  40. },
  41. data() {
  42. return {
  43. isLogin: true,
  44. btnLeft: 0,
  45. };
  46. },
  47. computed: {
  48. ...mapState(["abandon", "is_login", "routePath"]),
  49. showHeader() {
  50. return this.$route.meta.empty
  51. ? this.$route.meta.empty.includes("Header")
  52. : false;
  53. },
  54. showNavbar() {
  55. return this.$route.meta.empty
  56. ? this.$route.meta.empty.includes("Navbar")
  57. : false;
  58. },
  59. },
  60. mounted() {
  61. let btnRight = 100 + 8;
  62. this.btnLeft =
  63. window.innerWidth - btnRight > 1097
  64. ? window.innerWidth - btnRight
  65. : 1097;
  66. window.onresize = () => {
  67. this.$resizeListenerList.forEach((fn) => fn());
  68. this.btnLeft =
  69. window.innerWidth - btnRight > 1097
  70. ? window.innerWidth - btnRight
  71. : 1097;
  72. // body.style.zoom
  73. };
  74. },
  75. };
  76. </script>
  77. <style lang="scss">
  78. @import "~@/assets/css/common.scss";
  79. :root {
  80. --scrollTop: 0px; // 窗口当前滚动位置
  81. --windowHeight: 0px; // 窗口最大宽度
  82. }
  83. body {
  84. @extend %transitionAll;
  85. margin: 0;
  86. padding: 0;
  87. min-width: 1000px;
  88. background-color: #f5f5f5;
  89. }
  90. .Header {
  91. position: fixed;
  92. top: 0;
  93. left: 0;
  94. right: 0;
  95. z-index: 100;
  96. }
  97. .Navbar {
  98. position: fixed;
  99. top: calc(#{$headerHeight} + 10px);
  100. left: 10px;
  101. z-index: 100;
  102. }
  103. .Content {
  104. padding-top: $headerHeight;
  105. }
  106. .Footer {
  107. float: left;
  108. }
  109. .FixedBtn {
  110. z-index: 50;
  111. }
  112. @media (max-width: 1200px) {
  113. .Header {
  114. // position: absolute;
  115. // top: var(--scrollTop) !important;
  116. }
  117. .FixedBtn {
  118. position: absolute !important;
  119. top: calc(var(--scrollTop) + var(--windowHeight) - 80px) !important;
  120. }
  121. }
  122. </style>