to-contribute.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div class="to-contribute" v-if="show" @click="handleContribute">
  3. <img src="@/assets/icon/fabutougao.png" alt="" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "ToContribute",
  9. computed: {
  10. routePath() {
  11. return this.$store.state.routePath;
  12. },
  13. contributePath() {
  14. return `/${this.handleFilter()}-contribute`;
  15. },
  16. show() {
  17. return (
  18. this.handleFilter() &&
  19. !this.$route.meta.children &&
  20. this.$route.path != "/information-details-content"
  21. );
  22. },
  23. },
  24. methods: {
  25. // 跳转发布
  26. handleContribute() {
  27. if (this.routePath == this.contributePath) return;
  28. this.$router.push(this.contributePath);
  29. },
  30. // 取值
  31. handleFilter() {
  32. let path = "";
  33. ["video", "image-text", "information"].forEach((item) => {
  34. if (
  35. !this.routePath.includes("contribute") &&
  36. this.routePath.includes(item)
  37. ) {
  38. path = item;
  39. }
  40. });
  41. return path;
  42. },
  43. },
  44. };
  45. </script>
  46. <style lang="scss" scoped>
  47. .to-contribute {
  48. position: fixed;
  49. img {
  50. width: 50px;
  51. height: 50px;
  52. }
  53. }
  54. @media (min-width: 1200px) {
  55. .to-contribute {
  56. bottom: 100px;
  57. }
  58. }
  59. @media (max-width: 1200px) {
  60. .to-contribute {
  61. top: calc(var(--scrollTop) + var(--windowHeight) - 160px) !important;
  62. }
  63. }
  64. </style>