content.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <template>
  2. <div class="content">
  3. <div class="tab">
  4. <ContentTab
  5. :current="current"
  6. :showRefresh="!current"
  7. @changeTab="changeTab"
  8. @handleRefresh="handleRefresh"
  9. />
  10. </div>
  11. <div
  12. class="list"
  13. :style="{ opacity: current == 0 ? 1 : 0 }"
  14. v-if="current == 0"
  15. >
  16. <div
  17. class="card-item"
  18. v-for="item in recommendList"
  19. @click="toDetail(item.article_id, item.id)"
  20. >
  21. <ImageTextRecommendCard
  22. :info="item"
  23. style="width: 100%"
  24. v-if="item.images_arr.length < 3"
  25. @handleLike="handleLike(item)"
  26. @handleCollect="handleCollect(item)"
  27. @handleForward="handleForward(item)"
  28. />
  29. <ImageTextRecommendImageCard v-else :info="item" style="width: 100%" />
  30. </div>
  31. </div>
  32. <div class="loading" v-if="loading">
  33. <el-col :span="24" v-loading="loading"></el-col>
  34. </div>
  35. <div class="empty">
  36. <el-empty
  37. v-if="current == 0 && finished"
  38. description="没有更多数据"
  39. ></el-empty>
  40. </div>
  41. <div
  42. class="all"
  43. :style="{ opacity: current == 1 ? 1 : 0 }"
  44. v-if="current == 1"
  45. >
  46. <div class="screen">
  47. <Screen
  48. :list="cateTree"
  49. v-if="cateTree.length"
  50. @changeCurrent="changeCurrent"
  51. />
  52. </div>
  53. <div class="sort">
  54. <Sort :current="listParams.sort_type" @changeSort="changeSort" />
  55. </div>
  56. <div class="card-item" v-for="item in allList" @click="toDetail(item.id)">
  57. <ImageTextAllCard :info="item" />
  58. </div>
  59. </div>
  60. </div>
  61. </template>
  62. <script>
  63. import { ArticleService } from "@/common/service";
  64. import ContentTab from "@/components/module/content-tab.vue";
  65. import Screen from "@/components/module/screen.vue";
  66. import Sort from "@/components/module/sort.vue";
  67. import ImageTextRecommendCard from "@/components/image-text/image-text-recommend-card.vue";
  68. import ImageTextRecommendImageCard from "@/components/image-text/image-text-recommend-image-card.vue";
  69. import ImageTextAllCard from "@/components/image-text/image-text-all-card.vue";
  70. export default {
  71. name: "Content",
  72. components: {
  73. ContentTab,
  74. ImageTextRecommendCard,
  75. ImageTextRecommendImageCard,
  76. Screen,
  77. Sort,
  78. ImageTextAllCard,
  79. },
  80. data() {
  81. return {
  82. current: 0,
  83. recommendParams: {
  84. page: 1, // 页数
  85. page_num: 10, // 每页数
  86. },
  87. recommendList: [],
  88. loading: false,
  89. finished: false,
  90. cateTree: [],
  91. listParams: {
  92. first_classify: 0, // 一级分类
  93. second_classify: 0, // 二级分类
  94. page: 1, // 页数
  95. page_num: 10, // 每页数
  96. sort_type: 1, // 排序方式
  97. },
  98. allList: [], //全部数据
  99. };
  100. },
  101. mounted() {
  102. this.getRecommendList();
  103. this.getCateTree();
  104. if (this.$store.state.userInfo)
  105. this.$store.dispatch("getMarkNum", "imageText");
  106. },
  107. methods: {
  108. // tab切换
  109. changeTab(i) {
  110. this.current = i;
  111. this.loading = false;
  112. this.finished = false;
  113. this.recommendParams.page = 1;
  114. this.listParams.page = 1;
  115. this.recommendList = [];
  116. this.allList = [];
  117. i == 0 ? this.getRecommendList() : this.getArticleList();
  118. },
  119. // 刷新
  120. handleRefresh() {
  121. this.loading = false;
  122. this.finished = false;
  123. this.recommendParams.page = 1;
  124. this.getRecommendList();
  125. },
  126. // 更改筛选条件
  127. changeCurrent(first, second) {
  128. this.listParams.first_classify = first.id;
  129. this.listParams.second_classify = second.id;
  130. this.listParams.page = 1;
  131. this.loading = false;
  132. this.finished = false;
  133. this.getArticleList();
  134. },
  135. // 更改排序方式
  136. changeSort(type) {
  137. this.listParams.sort_type = type;
  138. this.listParams.page = 1;
  139. this.loading = false;
  140. this.finished = false;
  141. this.getArticleList();
  142. },
  143. // 触底
  144. TouchBottom() {
  145. if (!this.finished) {
  146. this.current == 0 ? this.getRecommendList() : this.getArticleList();
  147. }
  148. },
  149. // 获取推荐数据
  150. getRecommendList() {
  151. this.loading = true;
  152. let loadingFullscreen = "";
  153. if (this.recommendParams.page == 1) {
  154. loadingFullscreen = this.$loading({
  155. lock: true,
  156. text: "Loading",
  157. spinner: "el-icon-loading",
  158. background: "rgba(0, 0, 0, 0.7)",
  159. });
  160. }
  161. ArticleService.getRecommendList(this.recommendParams)
  162. .then(({ data }) => {
  163. const list = data.list;
  164. loadingFullscreen ? loadingFullscreen.close() : "";
  165. this.recommendList =
  166. this.recommendParams.page === 1
  167. ? list
  168. : [...this.recommendList, ...list];
  169. if (
  170. list.length < this.recommendParams.page_num ||
  171. this.recommendList.length == data.total_count
  172. ) {
  173. this.finished = true;
  174. } else {
  175. this.recommendParams.page++;
  176. }
  177. })
  178. .catch(() => {
  179. this.finished = true;
  180. })
  181. .finally(() => {
  182. this.loading = false;
  183. });
  184. },
  185. // 获取分类树
  186. getCateTree() {
  187. ArticleService.getArticleCate({ type: 2 }).then(({ data }) => {
  188. this.cateTree = data.list;
  189. });
  190. },
  191. // 获取所有数据
  192. getArticleList() {
  193. let loadingFullscreen = "";
  194. if (this.listParams.page == 1) {
  195. loadingFullscreen = this.$loading({
  196. lock: true,
  197. text: "Loading",
  198. spinner: "el-icon-loading",
  199. background: "rgba(0, 0, 0, 0.7)",
  200. });
  201. }
  202. ArticleService.getArticleList(this.listParams).then(({ data }) => {
  203. const list = data.list;
  204. loadingFullscreen ? loadingFullscreen.close() : "";
  205. this.allList =
  206. this.listParams.page === 1 ? list : [...this.allList, ...list];
  207. if (list.length < this.listParams.page_num) {
  208. this.finished = true;
  209. } else {
  210. this.listParams.page++;
  211. }
  212. });
  213. },
  214. // 点赞
  215. handleLike(item) {
  216. ArticleService.articleTags({ item_id: item.id }).then(({ data, msg }) => {
  217. item.is_like = data.tags;
  218. item.like_num = data.tags
  219. ? Number(item.like_num) + 1
  220. : Number(item.like_num) - 1;
  221. this.$message.success(msg);
  222. });
  223. },
  224. // 收藏
  225. handleCollect(item) {
  226. ArticleService.articleCollect({
  227. article_id: item.article_id,
  228. item_id: item.id,
  229. }).then(({ data, msg }) => {
  230. item.is_collect = data.status;
  231. item.collect_num = data.status
  232. ? Number(item.collect_num) + 1
  233. : Number(item.collect_num) - 1;
  234. this.$message.success(msg);
  235. });
  236. },
  237. // 分享
  238. handleForward(item) {
  239. ArticleService.articleTransmit({ item_id: item.id });
  240. },
  241. // 跳转详情
  242. toDetail(article_id, id) {
  243. !this.current
  244. ? this.$router.push({
  245. path: "/image-text-detail",
  246. query: {
  247. id,
  248. article_id,
  249. },
  250. })
  251. : this.$router.push({
  252. path: "/image-text-collection",
  253. query: {
  254. id: article_id,
  255. },
  256. });
  257. },
  258. },
  259. };
  260. </script>
  261. <style lang="scss" scoped>
  262. .content {
  263. width: calc(100% - 10vw);
  264. margin: 0 5vw;
  265. min-width: 750px;
  266. padding-left: 10px;
  267. .tab {
  268. margin-bottom: 20px;
  269. }
  270. .list {
  271. padding: 15px 0;
  272. padding-right: 0;
  273. box-sizing: border-box;
  274. display: flex;
  275. flex-direction: column;
  276. align-items: center;
  277. justify-content: space-around;
  278. .card-item {
  279. width: 100%;
  280. margin: 10px 0;
  281. }
  282. }
  283. .all {
  284. padding: 15px;
  285. box-sizing: border-box;
  286. .screen {
  287. }
  288. .sort {
  289. margin: 30px 0;
  290. }
  291. .card-item {
  292. margin-bottom: 20px;
  293. }
  294. }
  295. .loading {
  296. height: 40px;
  297. }
  298. .empty {
  299. margin-top: 40px;
  300. }
  301. }
  302. </style>