browse-history-card.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <CardBox :btnList="btnList" v-on="$listeners">
  3. <div class="browse-history-card" @click="$emit('handleToDetail')">
  4. <div class="header">
  5. <div class="user">
  6. <img class="avatar" :src="info.headimg" alt="" />
  7. <div class="name">{{ info.name }}</div>
  8. </div>
  9. <img class="vip" src="@/assets/icon/vip.png" v-if="info.level" />
  10. </div>
  11. <div class="title">
  12. <img class="icon" src="@/assets/icon/question.png" alt="" />
  13. <div class="content" v-html="formatRichText(info.content) || ''"></div>
  14. </div>
  15. <div class="tag">
  16. <div class="tag-item" v-for="tag in info.label_name">{{ tag }}</div>
  17. </div>
  18. <div class="footer">
  19. <img class="icon" src="@/assets/icon/answer.png" alt="" />
  20. <div class="answer-read">
  21. {{ info.reply_num }}人回答·{{ info.browse_num }}阅读量
  22. </div>
  23. <div class="report" @click.stop="$emit('handleReport')">
  24. <img class="report-icon" src="@/assets/icon/report.png" />
  25. <div class="report-text">举报</div>
  26. </div>
  27. </div>
  28. </div>
  29. </CardBox>
  30. </template>
  31. <script>
  32. import { formatRichText } from "@/common/util";
  33. import CardBox from "../card-module/card-box.vue";
  34. export default {
  35. name: "BrowseHistoryCard",
  36. components: { CardBox },
  37. props: {
  38. info: {
  39. default: () => {
  40. return {};
  41. },
  42. },
  43. },
  44. computed: {
  45. btnList() {
  46. let arr = ["del"];
  47. return this.manageType ? [] : arr;
  48. },
  49. },
  50. methods: {
  51. formatRichText,
  52. },
  53. };
  54. </script>
  55. <style lang="scss" scoped>
  56. .browse-history-card {
  57. width: 100%;
  58. min-width: 750px;
  59. background-color: white;
  60. padding: 20px;
  61. box-sizing: border-box;
  62. cursor: default;
  63. .header {
  64. display: flex;
  65. align-items: center;
  66. justify-content: space-between;
  67. .user {
  68. display: flex;
  69. align-items: center;
  70. .avatar {
  71. width: 30px;
  72. height: 30px;
  73. border-radius: 50%;
  74. }
  75. .name {
  76. font-size: 14px;
  77. color: #222222;
  78. margin-left: 10px;
  79. }
  80. }
  81. .vip {
  82. width: 38px;
  83. height: 20px;
  84. border-radius: 2px;
  85. }
  86. }
  87. .title {
  88. width: calc(100% - 40px);
  89. margin-top: 15px;
  90. font-size: 20px;
  91. font-weight: 500;
  92. color: #222222;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. white-space: nowrap;
  96. display: flex;
  97. .icon {
  98. width: 20px;
  99. height: 20px;
  100. margin-right: 10px;
  101. }
  102. }
  103. .content {
  104. width: calc(100% - 40px);
  105. font-size: 16px;
  106. font-weight: 400;
  107. color: #333333;
  108. display: -webkit-box;
  109. -webkit-line-clamp: 2;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. -webkit-box-orient: vertical;
  113. }
  114. .tag {
  115. display: flex;
  116. flex-wrap: wrap;
  117. align-items: center;
  118. height: 24px;
  119. overflow: hidden;
  120. margin-top: 15px;
  121. .tag-item {
  122. height: 24px;
  123. background: #f0f4ff;
  124. border-radius: 2px;
  125. margin-right: 10px;
  126. padding: 0 10px;
  127. font-size: 13px;
  128. font-weight: 400;
  129. color: #2a63f3;
  130. line-height: 24px;
  131. }
  132. }
  133. .footer {
  134. margin-top: 15px;
  135. display: flex;
  136. align-items: center;
  137. .icon {
  138. width: 20px;
  139. height: 20px;
  140. margin-right: 10px;
  141. }
  142. .answer-read {
  143. font-size: 14px;
  144. font-weight: 400;
  145. color: #666666;
  146. margin-right: 10px;
  147. }
  148. .report {
  149. display: flex;
  150. align-items: center;
  151. cursor: pointer;
  152. .report-icon {
  153. width: 16px;
  154. height: 16px;
  155. transform: translate(0, 1px);
  156. }
  157. .report-text {
  158. font-size: 14px;
  159. font-weight: 400;
  160. color: #666666;
  161. margin-left: 3px;
  162. }
  163. }
  164. }
  165. }
  166. </style>