more.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <script setup>
  2. import { ref, onMounted } from "vue";
  3. import Banner from "~/components/Banner/index.vue";
  4. import IndexTitle from "~/components/IndexTitle/index.vue";
  5. import IndexSection from "~/components/IndexSection/index.vue";
  6. import YXFooter from "~/components/layouts/Footer.vue";
  7. import { useRouter, useRoute } from "vue-router";
  8. const router = useRouter();
  9. const route = useRoute();
  10. import * as videoApi from "~/api/video";
  11. import * as articleApi from "~/api/article";
  12. //标题
  13. // 精选视频
  14. let videoList = ref([]);
  15. const __videos__ = async () => {
  16. try {
  17. const { data } = await videoApi.list({
  18. is_page: 0,
  19. is_boutique: 1,
  20. });
  21. videoList.value = data;
  22. total.value = data.length;
  23. } catch (error) {}
  24. };
  25. //分页器
  26. const handleCurrentChange = (val) => {
  27. page.value = val;
  28. if (title.value == "精选视频") {
  29. __videos__();
  30. } else {
  31. __articles__();
  32. }
  33. };
  34. //精彩文章
  35. const total = ref(0);
  36. const page = ref(0);
  37. const __articles__ = async () => {
  38. try {
  39. const { data } = await articleApi.list({
  40. page: page.value,
  41. limit: 12,
  42. is_page: 0,
  43. is_boutique: 1,
  44. });
  45. videoList.value = data;
  46. total.value = data.length;
  47. } catch (error) {}
  48. };
  49. const title = ref("");
  50. title.value = route.query.title;
  51. if (title.value == "精选视频") {
  52. onMounted(__videos__);
  53. } else {
  54. onMounted(__articles__);
  55. }
  56. //详情
  57. const todetails = (id, type) => {
  58. if (title.value == "精选视频") {
  59. router.push({
  60. name: "videos",
  61. query: {
  62. id: id,
  63. type: type,
  64. },
  65. });
  66. } else {
  67. router.push({
  68. name: "articles",
  69. query: {
  70. id: id,
  71. type: type,
  72. },
  73. });
  74. }
  75. };
  76. </script>
  77. <template>
  78. <div class="articles-container">
  79. <div class="title">{{ title }}</div>
  80. <div class="article-main" style="height: 730px">
  81. <template v-for="(item, idx) in videoList" :key="idx">
  82. <IndexSection
  83. @update="todetails(item.id, !item.image ? 'article' : 'common')"
  84. :type="!item.image ? 'article' : 'common'"
  85. :title="item.title"
  86. :time-ago="item.published_at"
  87. :descs="item.description"
  88. :topic-name="item.topic?.title"
  89. :author="item.user?.username"
  90. :author-avatar="item.user?.avatar"
  91. :view_count="item.view_count"
  92. :comment_count="item.comment_count"
  93. :collect_count="item.collect_count"
  94. :share_count="item.share_count"
  95. :image = item.image
  96. />
  97. </template>
  98. </div>
  99. <!-- <IndexTitle title="最新视频" />
  100. <div class="article-main">
  101. <template v-for="(item, idx) in newList" :key="idx">
  102. <IndexSection
  103. @update="todetails(item.id, !item.image ? 'article' : 'common')"
  104. :type="!item.image ? 'article' : 'common'"
  105. :title="item.title"
  106. :time-ago="item.published_at"
  107. :descs="item.description"
  108. :topic-name="item.topic?.title"
  109. :author="item.user?.username"
  110. :author-avatar="item.user?.avatar"
  111. :view_count="item.view_count"
  112. :comment_count="item.comment_count"
  113. :collect_count="item.collect_count"
  114. :share_count="item.share_count"
  115. />
  116. </template>
  117. </div> -->
  118. <div class="pagination-container">
  119. <el-pagination
  120. background
  121. layout="prev, pager, next"
  122. :total="total"
  123. :page-size="12"
  124. @current-change="handleCurrentChange"
  125. />
  126. </div>
  127. <YXFooter />
  128. </div>
  129. </template>
  130. <style lang="scss" scoped>
  131. @import "~/styles/variable.scss";
  132. .title {
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 600;
  135. font-size: 18px;
  136. color: #333333;
  137. line-height: 25px;
  138. text-align: left;
  139. font-style: normal;
  140. margin-bottom: 24px;
  141. }
  142. .articles-container {
  143. .index-title-container {
  144. margin-bottom: 20px;
  145. }
  146. .content-list {
  147. margin-bottom: 30px;
  148. column-gap: 20px;
  149. flex-wrap: wrap;
  150. height: 255px;
  151. overflow: hidden;
  152. }
  153. .article-main {
  154. display: grid;
  155. grid-template-columns: repeat(4, auto);
  156. justify-content: space-between;
  157. row-gap: 30px;
  158. }
  159. }
  160. </style>