App.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 = 8 + 50 + 60;
  62. this.btnLeft = window.innerWidth - btnRight;
  63. window.onresize = () => {
  64. this.$resizeListenerList.forEach((fn) => fn());
  65. this.btnLeft = window.innerWidth - btnRight;
  66. // body.style.zoom
  67. };
  68. },
  69. };
  70. </script>
  71. <style lang="scss">
  72. @import "~@/assets/css/common.scss";
  73. body {
  74. @extend %transitionAll;
  75. margin: 0;
  76. padding: 0;
  77. min-width: 1000px;
  78. background-color: #f5f5f5;
  79. }
  80. .Header {
  81. position: fixed;
  82. top: 0;
  83. left: 0;
  84. right: 0;
  85. z-index: 100;
  86. }
  87. .Navbar {
  88. position: fixed;
  89. top: calc(#{$headerHeight} + 10px);
  90. left: 10px;
  91. z-index: 100;
  92. }
  93. .Content {
  94. padding-top: $headerHeight;
  95. }
  96. .Footer {
  97. float: left;
  98. }
  99. .FixedBtn {
  100. z-index: 50;
  101. }
  102. </style>