comment.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <div
  3. class="box"
  4. v-for="(item, idx) in newsList"
  5. :key="idx"
  6. style="margin-bottom: 20px; border-bottom: 1px solid #f0f0f0;padding-bottom: 24px;"
  7. >
  8. <div style="display: flex">
  9. <div>
  10. <img
  11. :src="User.avatar"
  12. style="width: 48px; height: 48px; border-radius: 50%"
  13. alt=""
  14. />
  15. </div>
  16. <div style="margin-left: 14px">
  17. <div style="width: 775px">
  18. <div>
  19. <div style="display: flex">
  20. <div class="title">{{ item.user.username }}</div>
  21. <div class="ping" style="margin-left: 8px">评论了我的文章</div>
  22. </div>
  23. </div>
  24. <div class="date">{{ item.created_at }}</div>
  25. </div>
  26. <div>
  27. <div class="content">{{ item.content }}</div>
  28. <div style="display: flex;margin-top: 19px;">
  29. <div style="cursor: pointer;" @click="like(item.id, item.source_type)">
  30. <SvgIcon name="like" :size="16" :rgap="2" :color="item.is_like == 1 ? '#00b0b0' : '#999999'" />
  31. <span :style="{color:item.is_like == 1 ? '#00b0b0' : '#999999'}">赞</span>
  32. </div>
  33. <div @click="todetail(item.source_id, item.source_type)" style="margin-left: 26px;cursor: pointer;">
  34. <SvgIcon name="message" :size="16" :rgap="2" />
  35. <span>回复</span>
  36. </div>
  37. </div>
  38. </div>
  39. <div
  40. @click="todetail(item.source_id, item.source_type)"
  41. class="back"
  42. style="display: flex; margin-top: 19px"
  43. >
  44. <div>
  45. <img
  46. :src="item.source.image"
  47. style="width: 48px; height: 48px; border-radius: 50%"
  48. alt=""
  49. />
  50. </div>
  51. <div style="margin-left: 13px">
  52. <div class="title">{{ item.source.title }}</div>
  53. <div class="contena" v-html="item.source.content"></div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </template>
  60. <script setup>
  61. import { useRouter } from "vue-router";
  62. import { onMounted, ref } from "vue";
  63. import * as commentApi from "~/api/comment";
  64. import { useUser } from "~/store/user";
  65. import * as gatherApi from "~/api/gather";
  66. import SvgIcon from "~/components/SvgIcon/index.vue";
  67. const User = useUser();
  68. let newsList = ref([]);
  69. const __news__ = async () => {
  70. try {
  71. const { data } = await commentApi.mylist({
  72. is_page: 0,
  73. });
  74. newsList.value = data;
  75. } catch (error) {}
  76. };
  77. //跳转到详情
  78. const router = useRouter();
  79. const todetail = (id, type) => {
  80. if (type == "article") {
  81. router.push({
  82. name: "articles",
  83. query: {
  84. id: id,
  85. type: type,
  86. },
  87. });
  88. } else if (type == "info") {
  89. router.push({
  90. name: "news",
  91. query: {
  92. id: id,
  93. type: type,
  94. },
  95. });
  96. } else if (type == "integral_goods") {
  97. router.push({
  98. path: "/store/pointshoping/:id",
  99. query: {
  100. id: id,
  101. type: type,
  102. },
  103. });
  104. } else if (type == "post") {
  105. router.push({
  106. name: "post",
  107. query: {
  108. id: id,
  109. type: type,
  110. },
  111. });
  112. } else if (type == "video") {
  113. router.push({
  114. name: "videos",
  115. query: {
  116. id: id,
  117. type: type,
  118. },
  119. });
  120. }
  121. };
  122. //点赞
  123. const like = async (id,type) => {
  124. try {
  125. const { msg } = await gatherApi.like({
  126. source_type: 'comment',
  127. source_id:id,
  128. });
  129. ElMessage({
  130. message: msg,
  131. type: "success",
  132. });
  133. __news__()
  134. } catch (error) {
  135. console.log("error", error);
  136. }
  137. };
  138. onMounted(__news__);
  139. </script>
  140. <style lang="scss" scoped>
  141. .date {
  142. font-family: SFPro, SFPro;
  143. font-weight: 400;
  144. font-size: 14px;
  145. color: #888888;
  146. line-height: 16px;
  147. text-align: right;
  148. font-style: normal;
  149. }
  150. .back {
  151. background: #f7f7f7;
  152. border-radius: 6px;
  153. cursor: pointer;
  154. padding: 10px;
  155. box-sizing: border-box;
  156. }
  157. .ping {
  158. background: rgba(0, 176, 176, 0.1);
  159. border-radius: 2px;
  160. min-width: 100px;
  161. height: 25px;
  162. font-family: PingFangSC, PingFang SC;
  163. font-weight: 400;
  164. font-size: 12px;
  165. color: #00b0b0;
  166. line-height: 17px;
  167. text-align: center;
  168. font-style: normal;
  169. line-height: 25px;
  170. }
  171. .title {
  172. font-family: PingFangSC, PingFang SC;
  173. font-weight: 500;
  174. font-size: 16px;
  175. color: #333333;
  176. line-height: 22px;
  177. text-align: left;
  178. font-style: normal;
  179. }
  180. .contena {
  181. margin-top: 5px;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 400;
  184. font-size: 13px;
  185. color: #666666;
  186. line-height: 18px;
  187. text-align: left;
  188. font-style: normal;
  189. height: 30px;
  190. overflow: hidden;
  191. width: 710px;
  192. }
  193. </style>