index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 IndexNews from "~/components/IndexNews/index.vue";
  6. import IndexSection from "~/components/IndexSection/index.vue";
  7. import YXFooter from "~/components/layouts/Footer.vue";
  8. import {useRouter} from 'vue-router'
  9. const router = useRouter()
  10. import * as videoApi from "~/api/video";
  11. // 精选视频
  12. let videoList = ref([]);
  13. const __articles__ = async () => {
  14. try {
  15. const { data } = await videoApi.list({
  16. is_page: 0,
  17. is_boutique: 1,
  18. });
  19. videoList.value = data;
  20. } catch (error) {}
  21. };
  22. onMounted(__articles__);
  23. //最近视频
  24. let newList = ref([]);
  25. const __article__ = async () => {
  26. try {
  27. const { data } = await videoApi.list({
  28. is_page: 1,
  29. limit: 12,
  30. status: "normal",
  31. page: 1,
  32. });
  33. newList.value = data.list;
  34. } catch (error) {}
  35. };
  36. onMounted(__article__);
  37. const todetails = (id,type) => {
  38. router.push({
  39. name: "videos",
  40. query: {
  41. id: id,
  42. type:type
  43. },
  44. });
  45. };
  46. //查看更多
  47. const pickmore = (val) => {
  48. router.push({
  49. path: "/moreArticles",
  50. query: {
  51. title: val,
  52. },
  53. });
  54. };
  55. </script>
  56. <template>
  57. <div class="articles-container">
  58. <Banner type="video" />
  59. <IndexTitle title="精选视频" @seeMore="pickmore"/>
  60. <div class="article-main">
  61. <template v-for="(item, idx) in videoList" :key="idx">
  62. <IndexSection
  63. @update="todetails(item.id)"
  64. :type="!item.image ? 'article' : 'common'"
  65. :title="item.title"
  66. :time-ago="item.published_at"
  67. :descs="item.description"
  68. :topic-name="item.topic?.title"
  69. :author="item.user?.username"
  70. :author-avatar="item.user?.avatar"
  71. :view_count="item.view_count"
  72. :comment_count="item.comment_count"
  73. :collect_count="item.collect_count"
  74. :share_count="item.share_count"
  75. :image="item.image"
  76. />
  77. </template>
  78. </div>
  79. <IndexTitle title="最新视频" />
  80. <div class="article-main">
  81. <template v-for="(item, idx) in newList" :key="idx">
  82. <IndexSection
  83. @update="todetails(item.id)"
  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. <div class="pagination-container">
  100. <el-pagination background layout="prev, pager, next" :total="1000" />
  101. </div>
  102. <YXFooter />
  103. </div>
  104. </template>
  105. <style lang="scss" scoped>
  106. @import "~/styles/variable.scss";
  107. .articles-container {
  108. .index-title-container {
  109. margin-bottom: 20px;
  110. }
  111. .content-list {
  112. margin-bottom: 30px;
  113. column-gap: 20px;
  114. flex-wrap: wrap;
  115. height: 255px;
  116. overflow: hidden;
  117. }
  118. .article-main {
  119. display: grid;
  120. grid-template-columns: repeat(4, auto);
  121. justify-content: space-between;
  122. row-gap: 30px;
  123. }
  124. }
  125. </style>