comment.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <div class="comment">
  3. <div class="title">评论&nbsp;{{ total_num }}</div>
  4. <div class="send">
  5. <img class="headimg" :src="userInfo.headimg" />
  6. <div class="send-box" :class="{ expand: expand }">
  7. <textarea
  8. class="sendText"
  9. placeholder="发布一条友善的评论"
  10. v-model="content"
  11. @focus="expand = false"
  12. @blur="hideSendBox"
  13. >
  14. </textarea>
  15. <div
  16. class="sendBtn"
  17. :style="{ opacity: !!content ? '1' : '0.3' }"
  18. @click="
  19. (_) => {
  20. isSend = true;
  21. !!content ? handlePost() : '';
  22. }
  23. "
  24. >
  25. 发布
  26. </div>
  27. </div>
  28. </div>
  29. <div class="switch">
  30. <div
  31. class="switch-btn"
  32. :class="{ select: params.sort_type == 2 }"
  33. @click="changeSwitch(2)"
  34. >
  35. 最热
  36. </div>
  37. <div
  38. class="switch-btn"
  39. :class="{ select: params.sort_type == 1 }"
  40. @click="changeSwitch(1)"
  41. >
  42. 最新
  43. </div>
  44. </div>
  45. <div class="list">
  46. <div
  47. class="list-item"
  48. v-for="item in list"
  49. :ref="'comment' + item.id"
  50. :key="'comment' + item.id"
  51. >
  52. <CommentDetailCard
  53. :comment="item"
  54. :option="option"
  55. :reportType="option.reportType"
  56. @jump="handleJump"
  57. @reply="handleReply"
  58. @delete="handleDelete"
  59. />
  60. </div>
  61. </div>
  62. <div class="loadmore" v-if="!finished" @click="getList()">
  63. 点击查看更多评论
  64. </div>
  65. <div class="empty">
  66. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. import CommentDetailCard from "@/components/card/comment-detail-card.vue";
  72. export default {
  73. name: "Comment",
  74. components: { CommentDetailCard },
  75. props: ["box"],
  76. data() {
  77. return {
  78. // 输入框聚焦
  79. expand: true,
  80. isSend: false,
  81. // 输入框内容
  82. content: "",
  83. // 获取评论列表参数
  84. params: {
  85. // 页码
  86. page: 1,
  87. // 条目
  88. page_num: 10,
  89. // 排序方式
  90. sort_type: 2,
  91. },
  92. // 交互配置
  93. option: {
  94. // 列表api
  95. listApi: (_) => {},
  96. // 点赞api
  97. likeApi: (_) => {},
  98. // 评论api
  99. postApi: (_) => {},
  100. // 回复api
  101. postReplyApi: (_) => {},
  102. // 删除api
  103. delApi: (_) => {},
  104. // 举报类型
  105. reportType: 0,
  106. },
  107. // 数据列表
  108. list: [],
  109. // 数据总条目
  110. total_num: 0,
  111. // 无更多
  112. finished: false,
  113. };
  114. },
  115. computed: {
  116. userInfo() {
  117. return this.$store.state.userInfo;
  118. },
  119. },
  120. mounted() {},
  121. methods: {
  122. // 初始化
  123. init(option) {
  124. this.option = option;
  125. this.getList();
  126. },
  127. // 隐藏发送区域
  128. hideSendBox() {
  129. setTimeout((_) => {
  130. this.expand = this.isSend ? false : true;
  131. this.isSend = false;
  132. }, 100);
  133. },
  134. // 更换排序方式
  135. changeSwitch(type) {
  136. this.params.page = 1;
  137. this.params.sort_type = type;
  138. this.getList();
  139. },
  140. // 获取评论列表
  141. getList() {
  142. this.option.listApi(this.params).then(({ data }) => {
  143. this.total_num = data.total_num;
  144. this.list =
  145. this.params.page == 1 ? data.list : this.list.concat(data.list);
  146. this.params.page++;
  147. this.finished = data.list.length < this.params.page_num;
  148. });
  149. },
  150. // 评论
  151. handlePost() {
  152. this.option
  153. .postApi({ content: this.content }, this.comment)
  154. .then(({ data, msg }) => {
  155. this.$message.success(msg);
  156. this.content = "";
  157. this.send = false;
  158. let comment_detail = {
  159. is_like: 0,
  160. like_num: 0,
  161. can_delete: 1,
  162. ...data.detail,
  163. };
  164. this.params.sort_type == 1
  165. ? this.list.unshift(comment_detail)
  166. : this.list.push(comment_detail);
  167. });
  168. },
  169. // 跳转
  170. handleJump(item) {
  171. if (!this.$refs["comment" + item.id]) return;
  172. if (!this.box) {
  173. window.scrollTo(0, this.$refs["comment" + item.id][0].offsetTop);
  174. } else {
  175. this.$emit("handleJump", this.$refs["comment" + item.id][0].offsetTop);
  176. }
  177. },
  178. // 回复
  179. handleReply(item) {
  180. let comment_detail = {
  181. is_like: 0,
  182. like_num: 0,
  183. can_delete: 1,
  184. ...item,
  185. };
  186. this.params.sort_type == 1
  187. ? this.list.unshift(comment_detail)
  188. : this.list.push(comment_detail);
  189. },
  190. // 删除
  191. handleDelete(item) {
  192. this.list = this.list.filter((i) => {
  193. i.children =
  194. i.children &&
  195. i.children.filter((j) => {
  196. return j.id != item.id;
  197. });
  198. return i.id != item.id;
  199. });
  200. },
  201. },
  202. };
  203. </script>
  204. <style lang="scss" scoped>
  205. .comment {
  206. padding-bottom: 100px;
  207. .title {
  208. font-size: 38px;
  209. font-weight: 600;
  210. color: #151625;
  211. }
  212. .send {
  213. display: flex;
  214. align-items: flex-start;
  215. margin-top: 20px;
  216. .headimg {
  217. width: 60px;
  218. height: 60px;
  219. border-radius: 50%;
  220. }
  221. .send-box {
  222. height: 200px;
  223. margin-left: 15px;
  224. width: calc(100% - 80px);
  225. border-radius: 12px;
  226. position: relative;
  227. overflow: hidden;
  228. background: #f4f4f4;
  229. .sendText {
  230. width: 100%;
  231. height: 140px;
  232. outline: none;
  233. border: none;
  234. resize: none;
  235. padding: 20px 15px;
  236. background: #f4f4f4;
  237. font-size: 18px;
  238. font-weight: 400;
  239. box-sizing: border-box;
  240. }
  241. .sendText::placeholder {
  242. font-size: 18px;
  243. font-weight: 400;
  244. color: #999999;
  245. }
  246. .sendBtn {
  247. width: 90px;
  248. height: 45px;
  249. text-align: center;
  250. line-height: 45px;
  251. background-color: #2a63f3;
  252. border-radius: 23px;
  253. font-size: 16px;
  254. font-weight: 400;
  255. color: #ffffff;
  256. // position: absolute;
  257. // top: 125px;
  258. // right: 10px;
  259. float: right;
  260. transform: translate(-20px, 5px);
  261. cursor: pointer;
  262. }
  263. }
  264. .expand {
  265. height: 60px;
  266. }
  267. }
  268. .switch {
  269. display: flex;
  270. align-items: center;
  271. margin-top: 20px;
  272. .switch-btn {
  273. width: 75px;
  274. height: 40px;
  275. text-align: center;
  276. line-height: 40px;
  277. border-radius: 22px;
  278. font-weight: 400;
  279. font-size: 14px;
  280. background: #f4f4f4;
  281. color: #646464;
  282. margin-right: 10px;
  283. cursor: pointer;
  284. }
  285. .select {
  286. background: #2a63f3;
  287. color: #f3f3f3;
  288. }
  289. }
  290. .list {
  291. margin-top: 20px;
  292. .list-item {
  293. margin-top: 10px;
  294. }
  295. }
  296. .loadmore {
  297. width: 100%;
  298. height: 60px;
  299. line-height: 60px;
  300. text-align: center;
  301. background: #f4f4f4;
  302. border-radius: 10px;
  303. font-size: 16px;
  304. font-weight: 400;
  305. color: #717171;
  306. margin-top: 40px;
  307. cursor: pointer;
  308. }
  309. .empty {
  310. margin-top: 40px;
  311. }
  312. }
  313. </style>