content.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <template>
  2. <div class="content">
  3. <div class="list">
  4. <div class="card-item" v-for="item in list" @click="toDetail(item.id)">
  5. <NewsRecommendCard
  6. :info="item"
  7. style="width: 80%; margin: 0 auto"
  8. v-if="item.images_arr.length < 3"
  9. @handleLike="handleLike(item)"
  10. @handleCollect="handleCollect(item)"
  11. @handleForward="handleForward(item)"
  12. @handleComment="
  13. info = item;
  14. commentVisible = true;
  15. "
  16. />
  17. <NewsRecommendImageCard
  18. v-else
  19. :info="item"
  20. style="width: 80%; margin: 0 auto"
  21. />
  22. </div>
  23. </div>
  24. <div class="loading" v-if="loading">
  25. <el-col :span="24" v-loading="loading"></el-col>
  26. </div>
  27. <div class="empty">
  28. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  29. </div>
  30. <CommentAll
  31. v-model="commentVisible"
  32. :info="info"
  33. :option="comment_option"
  34. :reportType="comment_option.reportType"
  35. />
  36. </div>
  37. </template>
  38. <script>
  39. import { PressService } from "@/common/service";
  40. import NewsRecommendCard from "@/components/news/news-recommend-card.vue";
  41. import NewsRecommendImageCard from "@/components/news/news-recommend-image-card.vue";
  42. import CommentAll from "@/components/module/comment-all.vue";
  43. export default {
  44. name: "Content",
  45. components: {
  46. NewsRecommendCard,
  47. NewsRecommendImageCard,
  48. CommentAll,
  49. },
  50. data() {
  51. return {
  52. params: {
  53. page: 1, // 页数
  54. page_num: 20, // 每页数
  55. },
  56. list: [],
  57. loading: false,
  58. finished: false,
  59. commentVisible: false,
  60. info: {},
  61. };
  62. },
  63. computed: {
  64. comment_option() {
  65. return {
  66. // 列表api
  67. listApi: (params) =>
  68. PressService.getPressCommentList({
  69. ...params,
  70. id: this.info.id,
  71. }),
  72. // 点赞
  73. likeApi: (comment) =>
  74. PressService.pressCommentTags({
  75. comment_id: comment.id,
  76. }),
  77. // 发布评论
  78. postApi: (params) =>
  79. PressService.pressComment({
  80. ...params,
  81. id: this.info.id,
  82. }),
  83. // 回复评论
  84. postReplyApi: (params, comment) =>
  85. PressService.pressSecondComment({
  86. ...params,
  87. id: comment.id,
  88. }),
  89. reportType: 9,
  90. // 删除评论
  91. delApi: (params) => PressService.delComment({ id: params.id }),
  92. };
  93. },
  94. },
  95. mounted() {
  96. window.scrollTo(0, 0);
  97. this.getList();
  98. if (localStorage.getItem("user_info"))
  99. this.$store.dispatch("getMarkNum", "news");
  100. },
  101. methods: {
  102. // 刷新
  103. handleRefresh() {
  104. this.loading = false;
  105. this.finished = false;
  106. this.params.page = 1;
  107. this.getList();
  108. },
  109. // 触底
  110. TouchBottom() {
  111. if (!this.finished && !this.loading) {
  112. this.getList();
  113. }
  114. },
  115. // 获取推荐数据
  116. getList() {
  117. this.loading = true;
  118. let loadingFullscreen = "";
  119. if (this.params.page == 1) {
  120. loadingFullscreen = this.$loading({
  121. lock: true,
  122. text: "Loading",
  123. spinner: "el-icon-loading",
  124. background: "rgba(0, 0, 0, 0.7)",
  125. });
  126. }
  127. PressService.getRecommendList(this.params)
  128. .then(({ data }) => {
  129. const list = data.list;
  130. loadingFullscreen ? loadingFullscreen.close() : "";
  131. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  132. if (
  133. list.length < this.params.page_num ||
  134. this.list.length == data.total_count
  135. ) {
  136. this.finished = true;
  137. } else {
  138. this.params.page++;
  139. }
  140. })
  141. .catch(() => {
  142. this.finished = true;
  143. })
  144. .finally(() => {
  145. this.loading = false;
  146. });
  147. },
  148. // 点赞
  149. handleLike(item) {
  150. PressService.PressTags({ id: item.id }).then(({ data, msg }) => {
  151. item.is_praise = data.tags;
  152. item.praise_num = data.tags
  153. ? Number(item.praise_num) + 1
  154. : Number(item.praise_num) - 1;
  155. this.$message.success(msg);
  156. });
  157. },
  158. // 收藏
  159. handleCollect(item) {
  160. PressService.pressCollect({
  161. id: item.id,
  162. }).then(({ data, msg }) => {
  163. item.is_collect = data.status;
  164. item.collect_num = data.status
  165. ? Number(item.collect_num) + 1
  166. : Number(item.collect_num) - 1;
  167. this.$message.success(msg);
  168. });
  169. },
  170. // 分享
  171. handleForward(item) {
  172. PressService.pressTransmit({ id: item.id });
  173. },
  174. // 跳转详情
  175. toDetail(id) {
  176. this.$router.push({
  177. path: "/news-details",
  178. query: {
  179. press_id: id,
  180. },
  181. });
  182. },
  183. },
  184. };
  185. </script>
  186. <style lang="scss" scoped>
  187. .content {
  188. width: calc(100% - 3rem);
  189. margin-left: 3rem;
  190. min-width: 750px;
  191. padding-left: 10px;
  192. box-sizing: border-box;
  193. .tab {
  194. margin-bottom: 70px;
  195. }
  196. .list {
  197. padding-right: 0;
  198. box-sizing: border-box;
  199. display: flex;
  200. align-items: center;
  201. justify-content: space-between;
  202. flex-wrap: wrap;
  203. .card-item {
  204. width: 100%;
  205. margin: 0 0 20px;
  206. height: 226px;
  207. }
  208. }
  209. .all {
  210. padding: 15px;
  211. box-sizing: border-box;
  212. .screen {
  213. }
  214. .sort {
  215. margin: 30px 0;
  216. }
  217. .card-item {
  218. margin-bottom: 20px;
  219. }
  220. }
  221. .loading {
  222. height: 40px;
  223. }
  224. .empty {
  225. margin-top: 40px;
  226. }
  227. }
  228. </style>