123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <template>
- <div class="image-text-recommend-card">
- <div class="content">
- <div class="info">
- <img class="app-logo" :src="info.app_logo" alt="" />
- <div class="app-name">{{ info.app_name }}</div>
- <div class="time">{{ info.release_time }}</div>
- <img class="vip" v-if="!!info.is_vip" src="@/assets/icon/vip.png" />
- </div>
- <div class="title">{{ info.title }}</div>
- <div class="desc">{{ info.desc }}</div>
- <div class="control">
- <div class="item" @click.stop="$emit('handleLike')">
- <img
- v-if="info.is_like"
- src="@/assets/icon/dianzan_fill_blue.png"
- alt=""
- />
- <img v-else src="@/assets/icon/dianzan_fill_black.png" alt="" />
- <span :style="{ color: info.is_like ? '#2A63F3' : '#202020' }">{{
- info.like_num
- }}</span>
- </div>
- <div class="item" @click.stop="$emit('handleCollect')">
- <img
- v-if="info.is_collect"
- src="@/assets/icon/shoucang_fill_blue.png"
- alt=""
- />
- <img v-else src="@/assets/icon/shoucang_fill_black.png" alt="" />
- <span :style="{ color: info.is_collect ? '#2A63F3' : '#202020' }">{{
- info.collect_num
- }}</span>
- </div>
- <el-popover placement="bottom-start" v-model="forwardVisible">
- <div class="item" slot="reference" @click.stop>
- <img src="@/assets/icon/zhaunfa.png" alt="" />
- <span>转发</span>
- </div>
- <div class="forward">
- <div class="content">{{ forword_url }}</div>
- <div class="btn" @click="handleCopy(forword_url)">复制链接</div>
- </div>
- </el-popover>
- <div class="item" @click.stop="showReport">
- <img src="@/assets/icon/jubao_fill_black.png" alt="" />
- <span>举报</span>
- </div>
- </div>
- </div>
- <img class="cover" :src="info.cover" alt="" />
- <Report :type="5" :info="info" v-model="reportVisible" />
- </div>
- </template>
- <script>
- import { FORWARD_URL } from "@/common/config.js";
- import Report from "@/components/module/report.vue";
- export default {
- name: "ImageTextRecommendCard",
- components: { Report },
- props: {
- info: {
- type: Object,
- default: (_) => {},
- },
- },
- data() {
- return {
- forwardVisible: false,
- reportVisible: false,
- };
- },
- computed: {
- forword_url() {
- return `${FORWARD_URL}/image-text-details?id=${this.info.article_id}&item_id=${this.info.id}`;
- },
- },
- methods: {
- // 复制
- handleCopy(value) {
- let that = this;
- navigator.clipboard.writeText(value).then(function () {
- that.$message.success("复制成功");
- that.$emit("handleForward");
- });
- },
- // 举报
- showReport() {
- if (!this.$store.state.userInfo)
- return (this.$store.state.is_login.show = true);
- this.reportVisible = true;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .image-text-recommend-card {
- width: calc(100% - 40px);
- min-width: 600px;
- aspect-ratio: 4/1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: white;
- padding: 20px;
- box-sizing: border-box;
- cursor: default;
- .content {
- height: 100%;
- width: 58%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .info {
- display: flex;
- align-items: center;
- .app-logo {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- }
- .app-name {
- font-size: 18px;
- font-weight: 500;
- color: #131415;
- margin-left: 10px;
- }
- .time {
- margin-left: 10px;
- font-size: 14px;
- font-weight: 400;
- color: #444444;
- }
- .vip {
- width: 30px;
- height: 15px;
- margin-left: 10px;
- }
- }
- .title {
- font-size: 22px;
- font-weight: 400;
- color: #222222;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- margin-top: 5px;
- min-height: 30px;
- }
- .desc {
- height: 40px;
- margin-top: 10px;
- font-size: 16px;
- font-weight: 400;
- color: #666666;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- word-wrap: break-word;
- }
- .control {
- display: flex;
- align-items: center;
- margin-top: 20px;
- .item {
- width: 80px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-weight: 400;
- color: #202020;
- background: #f5f5f5;
- border-radius: 21px;
- box-sizing: border-box;
- cursor: pointer;
- margin-right: 10px;
- img {
- width: 16px;
- height: 16px;
- margin-right: 5px;
- }
- }
- }
- }
- .cover {
- width: 40%;
- aspect-ratio: 9/5;
- object-fit: cover;
- }
- }
- .forward {
- width: 240px;
- height: 35px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #f4f4f4;
- border-radius: 17px;
- user-select: none;
- .content {
- width: calc(100% - 100px);
- padding-left: 20px;
- font-size: 14px;
- font-weight: 400;
- color: #151625;
- overflow: hidden;
- white-space: nowrap;
- user-select: none;
- }
- .btn {
- width: 80px;
- height: 35px;
- background: #0054f7;
- border-radius: 0px 17px 17px 0px;
- text-align: center;
- font-size: 12px;
- font-weight: 400;
- color: #ffffff;
- line-height: 35px;
- cursor: pointer;
- }
- }
- </style>
|