comment.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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.source_id, item.source_type)">
  30. <SvgIcon name="like" :size="16" :rgap="2" :color="item.is_like == 1 ? '#00b0b0' : '#999999'" />
  31. <span>赞</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. const User = useUser();
  67. let newsList = ref([]);
  68. const __news__ = async () => {
  69. try {
  70. const { data } = await commentApi.mylist({
  71. is_page: 0,
  72. });
  73. newsList.value = data;
  74. } catch (error) {}
  75. };
  76. //跳转到详情
  77. const router = useRouter();
  78. const todetail = (id, type) => {
  79. if (type == "article") {
  80. router.push({
  81. name: "articles",
  82. query: {
  83. id: id,
  84. type: type,
  85. },
  86. });
  87. } else if (type == "info") {
  88. router.push({
  89. name: "news",
  90. query: {
  91. id: id,
  92. type: type,
  93. },
  94. });
  95. } else if (type == "integral_goods") {
  96. router.push({
  97. path: "/store/pointshoping/:id",
  98. query: {
  99. id: id,
  100. type: type,
  101. },
  102. });
  103. } else if (type == "post") {
  104. router.push({
  105. name: "post",
  106. query: {
  107. id: id,
  108. type: type,
  109. },
  110. });
  111. } else if (type == "video") {
  112. router.push({
  113. name: "videos",
  114. query: {
  115. id: id,
  116. type: type,
  117. },
  118. });
  119. }
  120. };
  121. //点赞
  122. const like = async (id,type) => {
  123. try {
  124. const { msg } = await gatherApi.like({
  125. source_type: type,
  126. source_id:id,
  127. });
  128. ElMessage({
  129. message: msg,
  130. type: "success",
  131. });
  132. __news__()
  133. } catch (error) {
  134. console.log("error", error);
  135. }
  136. };
  137. onMounted(__news__);
  138. </script>
  139. <style lang="scss" scoped>
  140. .date {
  141. font-family: SFPro, SFPro;
  142. font-weight: 400;
  143. font-size: 14px;
  144. color: #888888;
  145. line-height: 16px;
  146. text-align: right;
  147. font-style: normal;
  148. }
  149. .back {
  150. background: #f7f7f7;
  151. border-radius: 6px;
  152. cursor: pointer;
  153. padding: 10px;
  154. box-sizing: border-box;
  155. }
  156. .ping {
  157. background: rgba(0, 176, 176, 0.1);
  158. border-radius: 2px;
  159. min-width: 100px;
  160. height: 25px;
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 400;
  163. font-size: 12px;
  164. color: #00b0b0;
  165. line-height: 17px;
  166. text-align: center;
  167. font-style: normal;
  168. line-height: 25px;
  169. }
  170. .title {
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 500;
  173. font-size: 16px;
  174. color: #333333;
  175. line-height: 22px;
  176. text-align: left;
  177. font-style: normal;
  178. }
  179. .contena {
  180. margin-top: 5px;
  181. font-family: PingFangSC, PingFang SC;
  182. font-weight: 400;
  183. font-size: 13px;
  184. color: #666666;
  185. line-height: 18px;
  186. text-align: left;
  187. font-style: normal;
  188. height: 30px;
  189. overflow: hidden;
  190. width: 710px;
  191. }
  192. </style>