my-like.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. <template>
  2. <div class="wrap">
  3. <div class="wrap-title">
  4. <TitleControl
  5. title="我的点赞"
  6. :showSearch="!!type"
  7. @handleChange="handleSearch"
  8. >
  9. <div slot="control" class="control-btn">
  10. <div class="manage" @click="manageType = true" v-if="!manageType">
  11. 管理
  12. </div>
  13. <div class="manage cancel" @click="manageType = false" v-else>
  14. 取消
  15. </div>
  16. </div>
  17. <div slot="bottom" class="switch-box">
  18. <div class="btn" :class="{ select: !type }" @click="changeType(0)">
  19. 图文
  20. </div>
  21. <div class="btn" :class="{ select: !!type }" @click="changeType(1)">
  22. 评论
  23. </div>
  24. </div>
  25. </TitleControl>
  26. </div>
  27. <div class="wrap-content">
  28. <div class="del-box" v-if="manageType">
  29. <div class="radio">
  30. <el-checkbox
  31. v-model="allChecked"
  32. @change="changeAllChecked"
  33. ></el-checkbox>
  34. </div>
  35. <div
  36. class="btn"
  37. @click="
  38. handleDelete(
  39. list.filter((item) => item.checked),
  40. 0
  41. )
  42. "
  43. >
  44. 取消点赞
  45. </div>
  46. </div>
  47. <div class="list" v-if="!type">
  48. <div class="list-item" v-for="item in list" :key="item.id">
  49. <div class="radio" v-if="manageType">
  50. <el-checkbox v-model="item.checked"></el-checkbox>
  51. </div>
  52. <div
  53. class="card"
  54. :style="manageType ? { width: 'calc(100% - 60px)' } : ''"
  55. >
  56. <MyLikeImageTextCard
  57. :info="item"
  58. :manageType="manageType"
  59. :option="comment_option"
  60. @handleForward="handleForward(item)"
  61. @handleComment="handleComment(item)"
  62. @handleLike="handleLike(item)"
  63. @handleCollect="handleCollect(item)"
  64. @handleDelete="handleDelete([item])"
  65. @handleToDetail="
  66. handleToDetail(item, {
  67. id: 'item_id',
  68. article_id: 'article_id',
  69. })
  70. "
  71. />
  72. </div>
  73. </div>
  74. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  75. </div>
  76. <div class="list" v-else>
  77. <div class="list-item" v-for="item in list" :key="item.id">
  78. <div class="radio" v-if="manageType">
  79. <el-checkbox v-model="item.checked"></el-checkbox>
  80. </div>
  81. <div
  82. class="card"
  83. :style="manageType ? { width: 'calc(100% - 60px)' } : ''"
  84. >
  85. <MyLikeCommentCard
  86. :info="item"
  87. :manageType="manageType"
  88. @reply="showReply(item)"
  89. @handleDelete="handleDelete([item])"
  90. @handleToDetail="
  91. handleToDetail(item, {
  92. id: 'item_id',
  93. article_id: 'article_id',
  94. })
  95. "
  96. />
  97. </div>
  98. </div>
  99. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  100. </div>
  101. </div>
  102. <CommentAll
  103. v-model="commentVisible"
  104. :info="info"
  105. :option="comment_option"
  106. :reportType="8"
  107. />
  108. <Reply v-model="replyVisible" :info="info" @handleReply="handleReply" />
  109. </div>
  110. </template>
  111. <script>
  112. import MyLikeImageTextCard from "@/components/card/image-text/my-like-image-text-card.vue";
  113. import MyLikeCommentCard from "@/components/card/image-text/my-like-comment-card.vue";
  114. import TitleControl from "@/components/module/title-control.vue";
  115. import CommentAll from "@/components/module/comment-all.vue";
  116. import Reply from "@/components/module/reply.vue";
  117. import { ArticleService, CollectService } from "@/common/service";
  118. export default {
  119. components: {
  120. MyLikeImageTextCard,
  121. MyLikeCommentCard,
  122. TitleControl,
  123. CommentAll,
  124. Reply,
  125. },
  126. data() {
  127. return {
  128. list: [],
  129. params: {
  130. page: 1,
  131. page_num: 20,
  132. sort_type: 1,
  133. },
  134. // 是否无数据
  135. finished: false,
  136. // 是否点击管理按钮
  137. manageType: false,
  138. // 是否选中所有
  139. allChecked: false,
  140. // 当前选中类型
  141. type: 0,
  142. // 所有评论弹窗显示状态
  143. commentVisible: false,
  144. // 回复框显示状态
  145. replyVisible: false,
  146. // 弹窗信息
  147. info: {},
  148. // 搜索
  149. list_copy: "",
  150. };
  151. },
  152. computed: {
  153. comment_option() {
  154. return {
  155. // 列表api
  156. listApi: (params) =>
  157. ArticleService.getArticleCommentList({
  158. ...params,
  159. article_id: this.info.article_id, // 图文id
  160. item_id: this.info.item_id, // item_id
  161. }),
  162. // 点赞
  163. likeApi: (comment) =>
  164. ArticleService.commentTags({
  165. comment_id: comment.id,
  166. }),
  167. // 发布评论
  168. postApi: (params) =>
  169. ArticleService.articleComment({
  170. ...params,
  171. article_id: this.info.article_id,
  172. item_id: this.info.item_id,
  173. }),
  174. // 回复评论
  175. postReplyApi: (params, comment) =>
  176. ArticleService.secondCommend({
  177. ...params,
  178. id: comment.id,
  179. }),
  180. reportType: 8,
  181. // 删除评论
  182. delApi: (params) => ArticleService.delComment({ id: params.id }),
  183. };
  184. },
  185. },
  186. watch: {
  187. manageType(val) {
  188. !val ? (this.allChecked = false) : "";
  189. this.list.forEach((item) => (item.checked = false));
  190. },
  191. },
  192. mounted() {
  193. this.getImageTextList();
  194. },
  195. methods: {
  196. // 触底
  197. TouchBottom() {
  198. if (!this.finished) {
  199. !!this.type ? this.getCommentList() : this.getImageTextList();
  200. }
  201. },
  202. // 选择全部
  203. changeAllChecked(type) {
  204. this.list.map((item) => (item.checked = type));
  205. },
  206. // 切换数据类型
  207. changeType(type) {
  208. this.type = type;
  209. this.list = [];
  210. this.params.page = 1;
  211. this.manageType = false;
  212. !!type ? this.getCommentList() : this.getImageTextList();
  213. },
  214. // 获取数据--视频
  215. getImageTextList() {
  216. ArticleService.getTagsArticle(this.params).then(({ data }) => {
  217. const list = data.list.map((item) => {
  218. return { checked: false, ...item };
  219. });
  220. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  221. if (list.length < this.params.page_num) {
  222. this.finished = true;
  223. } else {
  224. this.params.page++;
  225. }
  226. });
  227. },
  228. // 获取数据--评论
  229. getCommentList() {
  230. ArticleService.getTagsComment(this.params).then(({ data }) => {
  231. const list = data.list.map((item) => {
  232. return { checked: false, ...item };
  233. });
  234. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  235. if (list.length < this.params.page_num) {
  236. this.finished = true;
  237. } else {
  238. this.params.page++;
  239. }
  240. });
  241. },
  242. // 删除记录
  243. handleDelete(arr) {
  244. let that = this;
  245. this.showConfirmPopup("确定要取消点赞?")
  246. .then(() => {
  247. let params = {
  248. id: "",
  249. type: this.type ? 9 : 8,
  250. };
  251. params.id = arr.map((item) => item.id).join(",");
  252. if (!params.id) return;
  253. ArticleService.batchesDel(params).then(({ data }) => {
  254. let list = that.list
  255. .map((item) => {
  256. return params.id.split(",").includes(item.id + "") ? "" : item;
  257. })
  258. .filter((item) => item);
  259. that.list = list;
  260. that.$message.success("取消成功!");
  261. that.manageType = false;
  262. });
  263. })
  264. .catch((_) => {});
  265. },
  266. // 跳转详情
  267. handleToDetail(item, key = { id: "id", article_id: "article_id" }) {
  268. if (Object.keys(item).includes("is_normal") && !item.is_normal)
  269. return this.$message.error("该图文已下架");
  270. this.$router.push({
  271. path: "/image-text-details",
  272. query: {
  273. item_id: item[key.id],
  274. id: item[key.article_id],
  275. },
  276. });
  277. },
  278. // 分享
  279. handleForward(item) {
  280. ArticleService.articleTransmit({
  281. item_id: item.id,
  282. }).then((_) => (item.transmit_num = Number(item.transmit_num) + 1));
  283. },
  284. // 评论
  285. handleComment(item) {
  286. this.commentVisible = !this.commentVisible;
  287. this.info = item;
  288. },
  289. // 点赞
  290. handleLike(item) {
  291. ArticleService.articleTags({
  292. item_id: item.item_id,
  293. }).then(({ data }) => {
  294. item.is_like = data.tags;
  295. item.like_num = data.tags
  296. ? Number(item.like_num) + 1
  297. : Number(item.like_num) - 1;
  298. });
  299. },
  300. // 收藏
  301. handleCollect(item) {
  302. CollectService.userCollect({
  303. coll_id: item.url_id,
  304. coll_type: 1,
  305. }).then(({ data }) => {
  306. item.is_collect = data.status;
  307. item.collect_num = data.status
  308. ? Number(item.collect_num) + 1
  309. : Number(item.collect_num) - 1;
  310. });
  311. },
  312. // 显示回复框
  313. showReply(item) {
  314. this.replyVisible = true;
  315. this.info = item;
  316. },
  317. // 回复
  318. handleReply(val) {
  319. this.replyVisible = false;
  320. ArticleService.secondCommend({
  321. id: this.info.like_id,
  322. content: val,
  323. }).then(({ data }) => {
  324. this.$message.success("回复成功");
  325. });
  326. },
  327. // 筛选
  328. handleSearch(val) {
  329. if (!this.list_copy) this.list_copy = this.list;
  330. if (val) {
  331. this.list = this.list_copy.filter((item) => {
  332. return item.content.includes(val);
  333. });
  334. } else {
  335. this.list = this.list_copy;
  336. this.list_copy = "";
  337. }
  338. },
  339. },
  340. };
  341. </script>
  342. <style lang="scss" scoped>
  343. .wrap {
  344. width: 100%;
  345. display: flex;
  346. flex-direction: column;
  347. align-items: center;
  348. .wrap-title {
  349. width: 80%;
  350. }
  351. .wrap-content {
  352. width: 80%;
  353. margin-top: 20px;
  354. .del-box {
  355. display: flex;
  356. align-items: center;
  357. margin: 0px 0 20px;
  358. .radio {
  359. width: 45px;
  360. display: flex;
  361. justify-content: center;
  362. margin-right: 20px;
  363. }
  364. .btn {
  365. width: 80px;
  366. height: 30px;
  367. border-radius: 17px;
  368. color: #ffffff;
  369. font-size: 16px;
  370. font-weight: 400;
  371. text-align: center;
  372. line-height: 30px;
  373. cursor: pointer;
  374. background: #ff9f18;
  375. }
  376. }
  377. .list {
  378. .list-item {
  379. margin-bottom: 20px;
  380. display: flex;
  381. align-items: center;
  382. justify-content: flex-end;
  383. position: relative;
  384. .radio {
  385. width: 45px;
  386. background-color: white;
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. position: absolute;
  391. top: 0;
  392. bottom: 0;
  393. left: 0;
  394. border-radius: 10px;
  395. }
  396. .card {
  397. width: 100%;
  398. }
  399. }
  400. }
  401. }
  402. }
  403. .control-btn {
  404. display: flex;
  405. align-items: center;
  406. justify-content: flex-end;
  407. user-select: none;
  408. .is-read {
  409. width: 100px;
  410. height: 30px;
  411. display: flex;
  412. align-items: center;
  413. justify-content: center;
  414. background: #f4f4f4;
  415. border-radius: 17px;
  416. font-size: 13px;
  417. font-weight: 400;
  418. color: #1677ff;
  419. img {
  420. width: 15px;
  421. height: 15px;
  422. margin-right: 5px;
  423. }
  424. }
  425. .manage {
  426. width: 70px;
  427. height: 30px;
  428. background: #2a63f3;
  429. border-radius: 17px;
  430. font-size: 13px;
  431. font-weight: 400;
  432. text-align: center;
  433. line-height: 30px;
  434. color: #ffffff;
  435. margin-left: 10px;
  436. }
  437. .cancel {
  438. background: transparent;
  439. color: #1677ff;
  440. }
  441. }
  442. .switch-box {
  443. display: flex;
  444. align-items: center;
  445. margin-top: 15px;
  446. .btn {
  447. width: 100px;
  448. height: 35px;
  449. text-align: center;
  450. line-height: 35px;
  451. font-size: 14px;
  452. font-weight: 400;
  453. color: #666666;
  454. background: #f4f4f4;
  455. border-radius: 22px;
  456. cursor: pointer;
  457. margin-right: 10px;
  458. }
  459. .select {
  460. background: #2a63f3;
  461. color: #ffffff;
  462. }
  463. }
  464. </style>