content.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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="list-item"
  18. v-for="item in recommendList"
  19. @click="toDetail(item.video_id, item.id)"
  20. >
  21. <VideoRecommendCard :info="item" style="width: 500px; height: 380px" />
  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
  29. v-if="current == 0 && finished"
  30. description="没有更多数据"
  31. ></el-empty>
  32. </div>
  33. <div
  34. class="all"
  35. :style="{ opacity: current == 1 ? 1 : 0 }"
  36. v-if="current == 1"
  37. >
  38. <div class="screen">
  39. <Screen
  40. :list="cateTree"
  41. v-if="cateTree.length"
  42. @changeCurrent="changeCurrent"
  43. />
  44. </div>
  45. <div class="sort">
  46. <Sort :current="listParams.sort_type" @changeSort="changeSort" />
  47. </div>
  48. <div
  49. class="card-item"
  50. v-for="item in allList"
  51. @click="toDetail(item.id, item.video_arr[0].id)"
  52. >
  53. <VideoAllCard :info="item" />
  54. </div>
  55. </div>
  56. </div>
  57. </template>
  58. <script>
  59. import { VideoService } from "@/common/service";
  60. import ContentTab from "@/components/module/content-tab.vue";
  61. import Screen from "@/components/module/screen.vue";
  62. import Sort from "@/components/module/sort.vue";
  63. import VideoRecommendCard from "@/components/video/video-recommend-card.vue";
  64. import VideoAllCard from "@/components/video/video-all-card.vue";
  65. export default {
  66. name: "Content",
  67. components: { ContentTab, VideoRecommendCard, Screen, Sort, VideoAllCard },
  68. data() {
  69. return {
  70. current: 0,
  71. recommendParams: {
  72. page: 1, // 页数
  73. page_num: 10, // 每页数
  74. },
  75. recommendList: [],
  76. loading: false,
  77. finished: false,
  78. cateTree: [],
  79. listParams: {
  80. first_classify: 0, // 一级分类
  81. second_classify: 0, // 二级分类
  82. page: 1, // 页数
  83. page_num: 10, // 每页数
  84. sort_type: 1, // 排序方式
  85. },
  86. allList: [], //全部数据
  87. };
  88. },
  89. mounted() {
  90. this.getRecommendList();
  91. this.getCateTree();
  92. },
  93. methods: {
  94. // tab切换
  95. changeTab(i) {
  96. this.current = i;
  97. this.loading = false;
  98. this.finished = false;
  99. this.recommendParams.page = 1;
  100. this.listParams.page = 1;
  101. this.recommendList = [];
  102. this.allList = [];
  103. i == 0 ? this.getRecommendList() : "";
  104. },
  105. // 刷新
  106. handleRefresh() {
  107. this.loading = false;
  108. this.finished = false;
  109. this.recommendParams.page = 1;
  110. this.getRecommendList();
  111. },
  112. // 更改筛选条件
  113. changeCurrent(first, second) {
  114. this.listParams.first_classify = first.id;
  115. this.listParams.second_classify = second.id;
  116. this.listParams.page = 1;
  117. this.loading = false;
  118. this.finished = false;
  119. this.getVideoList();
  120. },
  121. // 更改排序方式
  122. changeSort(type) {
  123. this.listParams.sort_type = type;
  124. this.listParams.page = 1;
  125. this.loading = false;
  126. this.finished = false;
  127. this.getVideoList();
  128. },
  129. // 触底
  130. TouchBottom() {
  131. if (!this.finished) {
  132. this.current == 0 ? this.getRecommendList() : this.getVideoList();
  133. }
  134. },
  135. // 获取推荐数据
  136. getRecommendList() {
  137. this.loading = true;
  138. let loadingFullscreen = "";
  139. if (this.recommendParams.page == 1) {
  140. loadingFullscreen = this.$loading({
  141. lock: true,
  142. text: "Loading",
  143. spinner: "el-icon-loading",
  144. background: "rgba(0, 0, 0, 0.7)",
  145. });
  146. }
  147. VideoService.getRecommendList(this.recommendParams)
  148. .then(({ data }) => {
  149. const list = data.list;
  150. loadingFullscreen ? loadingFullscreen.close() : "";
  151. this.recommendList =
  152. this.recommendParams.page === 1
  153. ? list
  154. : [...this.recommendList, ...list];
  155. if (list.length < this.recommendParams.page_num) {
  156. this.finished = true;
  157. } else {
  158. this.recommendParams.page++;
  159. }
  160. })
  161. .catch(() => {
  162. this.finished = true;
  163. })
  164. .finally(() => {
  165. this.loading = false;
  166. });
  167. },
  168. // 获取分类树
  169. getCateTree() {
  170. VideoService.getCateTree({ type: 2 }).then(({ data }) => {
  171. this.cateTree = data.list;
  172. });
  173. },
  174. // 获取所有数据
  175. getVideoList() {
  176. let loadingFullscreen = "";
  177. if (this.listParams.page == 1) {
  178. loadingFullscreen = this.$loading({
  179. lock: true,
  180. text: "Loading",
  181. spinner: "el-icon-loading",
  182. background: "rgba(0, 0, 0, 0.7)",
  183. });
  184. }
  185. VideoService.getVideoList(this.listParams).then(({ data }) => {
  186. const list = data.list;
  187. loadingFullscreen ? loadingFullscreen.close() : "";
  188. this.allList =
  189. this.listParams.page === 1 ? list : [...this.allList, ...list];
  190. if (list.length < this.listParams.page_num) {
  191. this.finished = true;
  192. } else {
  193. this.listParams.page++;
  194. }
  195. });
  196. },
  197. // 跳转详情
  198. toDetail(id, videoArrId) {
  199. this.$router.push({
  200. path: "/video-detail",
  201. query: {
  202. id,
  203. videoArrId,
  204. },
  205. });
  206. },
  207. },
  208. };
  209. </script>
  210. <style lang="scss" scoped>
  211. .content {
  212. width: calc(100% - 100px);
  213. max-width: 1600px;
  214. margin: 0 auto;
  215. .tab {
  216. margin-bottom: 20px;
  217. }
  218. .list {
  219. display: flex;
  220. flex-wrap: wrap;
  221. align-items: center;
  222. @media (min-width: 1900px) {
  223. .list-item {
  224. margin: 10px calc((100% - 1500px) / 6);
  225. }
  226. }
  227. @media (min-width: 1400px) and (max-width: 1900px) {
  228. .list-item {
  229. margin: 10px calc((100% - 1000px) / 4);
  230. }
  231. }
  232. @media (max-width: 1400px) {
  233. .list-item {
  234. margin: 10px auto;
  235. }
  236. }
  237. }
  238. .all {
  239. .screen {
  240. }
  241. .sort {
  242. margin: 30px 0;
  243. }
  244. .card-item {
  245. margin-bottom: 20px;
  246. }
  247. }
  248. .loading {
  249. height: 40px;
  250. }
  251. .empty {
  252. margin-top: 40px;
  253. }
  254. }
  255. </style>