content.vue 7.0 KB

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