61 lines
1.9 KiB
Vue
61 lines
1.9 KiB
Vue
|
<template>
|
||
|
<view class="pad-x100">
|
||
|
<!-- 头部 -->
|
||
|
<status-nav navBarTitle="视频" :marginBottom="0"></status-nav>
|
||
|
<!-- 视频列表 -->
|
||
|
<view class="video">
|
||
|
<list-all :videoList="videoList"></list-all>
|
||
|
</view>
|
||
|
<!-- 加载更多 -->
|
||
|
<view class="tags font20 opacity-05">{{tags}}</view>
|
||
|
<!-- 尾部 -->
|
||
|
<foot-tab :current="99"></foot-tab>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
import listAll from '@/components/list/list-all.vue';
|
||
|
export default {
|
||
|
components:{
|
||
|
listAll
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
screenHeight:uni.getSystemInfoSync().screenHeight,
|
||
|
statusHeight:uni.getSystemInfoSync().statusBarHeight,
|
||
|
videoList:[], //视频列表
|
||
|
tags:'~ 下拉加载更多内容 ~', //提示信息
|
||
|
page:1,
|
||
|
size:10,
|
||
|
total:0,
|
||
|
noMore:false,
|
||
|
}
|
||
|
},
|
||
|
onLoad(op) {
|
||
|
// 获取视频列表
|
||
|
this.getVideoList();
|
||
|
},
|
||
|
// 触底
|
||
|
onReachBottom(e) {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
// 获取视频列表
|
||
|
getVideoList(){
|
||
|
this.videoList = [
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'},
|
||
|
{cover:'/static/public/video.jpg',src:'http://static.dothis.top/storage/videos/202208/62f38e29a23ad.mp4'}
|
||
|
]
|
||
|
console.log(this.videoList,'视频列表')
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
</style>
|