| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <el-row>
- <el-row class="movie-list">
- <el-col :md="12">
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <site-notice />
- </el-row>
- <el-row style="padding-right: 5px; padding-left: 5px; padding-bottom: 5px">
- <el-carousel :interval="3000" height="300px">
- <el-carousel-item v-for="(item, index) in carouselList" :key="index">
- <router-link target="_blank" :to="`/video/${item.videoId}`">
- <img class="carousel_image_type" :src="item.coverUrl" alt="img">
- </router-link>
- </el-carousel-item>
- </el-carousel>
- </el-row>
- </el-col>
- <el-col :md="12">
- <!--电影列表,与推荐列表-->
- <el-row>
- <!--电影列表-->
- <el-col :md="24">
- <el-col v-for="(item, index) in sideDataList" :key="index" :md="12" :sm="12" :xs="12">
- <video-card :video="item" />
- </el-col>
- </el-col>
- </el-row>
- </el-col>
- </el-row>
- <el-row class="movie-list">
- <!--电影列表,与推荐列表-->
- <el-row
- v-if="dataList.length !== 0"
- v-infinite-scroll="load"
- infinite-scroll-disabled="loading"
- infinite-scroll-distance="10"
- >
- <!--电影列表-->
- <el-col :md="24">
- <el-col v-for="(item, index) in dataList" :key="index" :md="6" :sm="12" :xs="12">
- <video-card :video="item" />
- </el-col>
- </el-col>
- </el-row>
- <el-row v-else class="not-result">
- <el-col :span="12" :offset="6">
- <img src="@/assets/img/icon/not-collection.png">
- <div>推荐数据正在计算中</div>
- </el-col>
- </el-row>
- </el-row>
- </el-row>
- </template>
- <script>
- import VideoCard from '@/components/card/VideoCard'
- import SiteNotice from '@/components/card/SiteNotice'
- import { getHotVideo, videoRecommend } from '@/api/video'
- export default {
- name: 'Index',
- components: { VideoCard, SiteNotice },
- data() {
- return {
- // 屏幕宽度, 为了控制分页条的大小
- screenWidth: document.body.clientWidth,
- nextId: 0,
- sideDataList: [],
- dataList: [],
- loading: false,
- max: 0,
- carouselList: []
- }
- },
- created() {
- this.videoRecommendWrapper(this.nextId)
- },
- mounted() {
- // 当窗口宽度改变时获取屏幕宽度
- window.onresize = () => {
- return () => {
- window.screenWidth = document.body.clientWidth
- this.screenWidth = window.screenWidth
- }
- }
- getHotVideo().then(resp => {
- if (resp.code === 0) {
- this.carouselList = resp.data
- }
- })
- },
- methods: {
- videoRecommendWrapper(nextId) {
- videoRecommend(nextId).then(resp => {
- if (resp.code === 0) {
- const respData = resp.data
- if (respData.length === 0) {
- this.loading = false
- return
- }
- if (this.nextId === 0) {
- this.sideDataList = respData.slice(0, 4)
- this.dataList = respData.slice(4, 12)
- } else {
- for (const item of respData) {
- this.dataList.push(item)
- }
- }
- this.loading = false
- this.nextId++
- } else {
- this.$notify(
- {
- title: '提示',
- message: '获取数据失败, 请重新刷新页面',
- type: 'warning',
- duration: 3000
- }
- )
- }
- })
- },
- load() {
- this.max++
- if (this.max > 0) {
- return
- }
- this.loading = true
- setTimeout(() => {
- this.videoRecommendWrapper(this.nextId)
- }, 1000)
- }
- }
- }
- </script>
- <style scoped>
- /*处于手机屏幕时*/
- @media screen and (max-width: 768px){
- .movie-list {
- padding-top: 8px;
- padding-left: 0.5%;
- padding-right: 0.5%;
- }
- }
- .movie-list {
- padding-top: 15px;
- padding-left: 6%;
- padding-right: 6%;
- }
- .not-result {
- padding-top: 100px;
- padding-bottom: 100px;
- text-align: center;
- }
- .el-carousel__item h3 {
- color: #475669;
- font-size: 18px;
- opacity: 0.75;
- line-height: 300px;
- margin: 0;
- }
- .carousel_image_type{
- width: 100%;
- }
- </style>
|