123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="to-contribute" v-if="show" @click="handleContribute">
- <img src="@/assets/icon/fabutougao.png" alt="" />
- </div>
- </template>
- <script>
- export default {
- name: "ToContribute",
- computed: {
- routePath() {
- return this.$store.state.routePath;
- },
- contributePath() {
- return `/${this.handleFilter()}-contribute`;
- },
- show() {
- return (
- this.handleFilter() &&
- !this.$route.meta.children &&
- this.$route.path != "/information-details-content"
- );
- },
- },
- methods: {
- // 跳转发布
- handleContribute() {
- if (this.routePath == this.contributePath) return;
- this.$router.push(this.contributePath);
- },
- // 取值
- handleFilter() {
- let path = "";
- ["video", "image-text", "information"].forEach((item) => {
- if (
- !this.routePath.includes("contribute") &&
- this.routePath.includes(item)
- ) {
- path = item;
- }
- });
- return path;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .to-contribute {
- position: fixed;
- img {
- width: 50px;
- height: 50px;
- }
- }
- @media (min-width: 1200px) {
- .to-contribute {
- bottom: 100px;
- }
- }
- @media (max-width: 1200px) {
- .to-contribute {
- top: calc(var(--scrollTop) + var(--windowHeight) - 160px) !important;
- }
- }
- </style>
|