image-text-recommend-card.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <div class="image-text-recommend-card">
  3. <div class="content">
  4. <div class="info">
  5. <img class="app-logo" :src="info.app_logo" alt="" />
  6. <div class="app-name">{{ info.app_name }}</div>
  7. <div class="time">{{ info.release_time }}</div>
  8. <img class="vip" v-if="!!info.is_vip" src="@/assets/icon/vip.png" />
  9. </div>
  10. <div class="title">{{ info.title }}</div>
  11. <div class="desc">{{ info.desc }}</div>
  12. <div class="control">
  13. <div class="item" @click.stop="$emit('handleLike')">
  14. <img
  15. v-if="info.is_like"
  16. src="@/assets/icon/dianzan_fill_blue.png"
  17. alt=""
  18. />
  19. <img v-else src="@/assets/icon/dianzan_fill_black.png" alt="" />
  20. <span :style="{ color: info.is_like ? '#2A63F3' : '#202020' }">{{
  21. info.like_num
  22. }}</span>
  23. </div>
  24. <div class="item" @click.stop="$emit('handleCollect')">
  25. <img
  26. v-if="info.is_collect"
  27. src="@/assets/icon/shoucang_fill_blue.png"
  28. alt=""
  29. />
  30. <img v-else src="@/assets/icon/shoucang_fill_black.png" alt="" />
  31. <span :style="{ color: info.is_collect ? '#2A63F3' : '#202020' }">{{
  32. info.collect_num
  33. }}</span>
  34. </div>
  35. <el-popover placement="bottom-start" v-model="forwardVisible">
  36. <div class="item" slot="reference" @click.stop>
  37. <img src="@/assets/icon/zhaunfa.png" alt="" />
  38. <span>转发</span>
  39. </div>
  40. <div class="forward">
  41. <div class="content">{{ forword_url }}</div>
  42. <div class="btn" @click="handleCopy(forword_url)">复制链接</div>
  43. </div>
  44. </el-popover>
  45. <div class="item" @click.stop="showReport">
  46. <img src="@/assets/icon/jubao_fill_black.png" alt="" />
  47. <span>举报</span>
  48. </div>
  49. </div>
  50. </div>
  51. <img class="cover" :src="info.cover" alt="" />
  52. <Report :type="5" :info="info" v-model="reportVisible" />
  53. </div>
  54. </template>
  55. <script>
  56. import { FORWARD_URL } from "@/common/config.js";
  57. import Report from "@/components/module/report.vue";
  58. export default {
  59. name: "ImageTextRecommendCard",
  60. components: { Report },
  61. props: {
  62. info: {
  63. type: Object,
  64. default: (_) => {},
  65. },
  66. },
  67. data() {
  68. return {
  69. forwardVisible: false,
  70. reportVisible: false,
  71. };
  72. },
  73. computed: {
  74. forword_url() {
  75. return `${FORWARD_URL}/image-text-details?id=${this.info.article_id}&item_id=${this.info.id}`;
  76. },
  77. },
  78. methods: {
  79. // 复制
  80. handleCopy(value) {
  81. let that = this;
  82. navigator.clipboard.writeText(value).then(function () {
  83. that.$message.success("复制成功");
  84. that.$emit("handleForward");
  85. });
  86. },
  87. // 举报
  88. showReport() {
  89. if (!this.$store.state.userInfo)
  90. return (this.$store.state.is_login.show = true);
  91. this.reportVisible = true;
  92. },
  93. },
  94. };
  95. </script>
  96. <style lang="scss" scoped>
  97. .image-text-recommend-card {
  98. width: calc(100% - 40px);
  99. min-width: 600px;
  100. aspect-ratio: 4/1;
  101. display: flex;
  102. align-items: center;
  103. justify-content: space-between;
  104. background-color: white;
  105. padding: 20px;
  106. box-sizing: border-box;
  107. cursor: default;
  108. .content {
  109. height: 100%;
  110. width: 58%;
  111. display: flex;
  112. flex-direction: column;
  113. justify-content: space-between;
  114. .info {
  115. display: flex;
  116. align-items: center;
  117. .app-logo {
  118. width: 40px;
  119. height: 40px;
  120. border-radius: 50%;
  121. }
  122. .app-name {
  123. font-size: 18px;
  124. font-weight: 500;
  125. color: #131415;
  126. margin-left: 10px;
  127. }
  128. .time {
  129. margin-left: 10px;
  130. font-size: 14px;
  131. font-weight: 400;
  132. color: #444444;
  133. }
  134. .vip {
  135. width: 30px;
  136. height: 15px;
  137. margin-left: 10px;
  138. }
  139. }
  140. .title {
  141. font-size: 22px;
  142. font-weight: 400;
  143. color: #222222;
  144. text-overflow: ellipsis;
  145. white-space: nowrap;
  146. overflow: hidden;
  147. margin-top: 5px;
  148. min-height: 30px;
  149. }
  150. .desc {
  151. height: 40px;
  152. margin-top: 10px;
  153. font-size: 16px;
  154. font-weight: 400;
  155. color: #666666;
  156. overflow: hidden;
  157. text-overflow: ellipsis;
  158. display: -webkit-box;
  159. -webkit-box-orient: vertical;
  160. -webkit-line-clamp: 2;
  161. word-wrap: break-word;
  162. }
  163. .control {
  164. display: flex;
  165. align-items: center;
  166. margin-top: 20px;
  167. .item {
  168. width: 80px;
  169. height: 40px;
  170. display: flex;
  171. align-items: center;
  172. justify-content: center;
  173. font-size: 14px;
  174. font-weight: 400;
  175. color: #202020;
  176. background: #f5f5f5;
  177. border-radius: 21px;
  178. box-sizing: border-box;
  179. cursor: pointer;
  180. margin-right: 10px;
  181. img {
  182. width: 16px;
  183. height: 16px;
  184. margin-right: 5px;
  185. }
  186. }
  187. }
  188. }
  189. .cover {
  190. width: 40%;
  191. aspect-ratio: 9/5;
  192. object-fit: cover;
  193. }
  194. }
  195. .forward {
  196. width: 240px;
  197. height: 35px;
  198. display: flex;
  199. align-items: center;
  200. justify-content: center;
  201. background: #f4f4f4;
  202. border-radius: 17px;
  203. user-select: none;
  204. .content {
  205. width: calc(100% - 100px);
  206. padding-left: 20px;
  207. font-size: 14px;
  208. font-weight: 400;
  209. color: #151625;
  210. overflow: hidden;
  211. white-space: nowrap;
  212. user-select: none;
  213. }
  214. .btn {
  215. width: 80px;
  216. height: 35px;
  217. background: #0054f7;
  218. border-radius: 0px 17px 17px 0px;
  219. text-align: center;
  220. font-size: 12px;
  221. font-weight: 400;
  222. color: #ffffff;
  223. line-height: 35px;
  224. cursor: pointer;
  225. }
  226. }
  227. </style>