zhgdyunapp/pages/videoManage/playBackList.vue
2024-05-16 13:43:33 +08:00

165 lines
3.7 KiB
Vue

<template>
<view class="fullHeight">
<headers :showBack="true" :themeType="'#3A7BFF'">
<view class="headerName">
录像查询
</view>
</headers>
<view class="date-search">
<uni-datetime-picker v-model="timeRange" type="daterange" rangeSeparator="至"
@change="confirmTimeRange" />
<view class="btn-style">查询</view>
</view>
<view class="videoBox" v-if="videoList.length>0">
<view class="videoItem" v-for="(item,index) in videoList" :key="index" @click="playVideoFn(item)">
<image v-if="item.coverUrl" class="videoPoster" :src="item.coverUrl" mode="aspectFill"></image>
<view v-else class="videoPoster">
<image src="/static/no_poster.png" class="no_poster"></image>
</view>
<view class="back-time">
<text class="date-time">2024-05-11 00:00:00</text>
<text class="divider-text"></text>
<text class="date-time">2024-05-11 00:00:00</text>
</view>
</view>
</view>
<view class="placeholderBox" v-else>
<image src="/static/noData.png" class="noDataImg"></image>
<view class="text">
暂无数据
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
videoList: [
{name: 123, startTime: "2024-05-11 00:00:00", endTime: "2024-06-11 00:00:00"},
{name: 123, startTime: "2024-05-11 00:00:00", endTime: "2024-06-11 00:00:00"}
],
pageType: 'company',
pageNo: 1,
pageSize: 7,
timeRange: []
};
},
onLoad(options) {
if (options.pageType) {
this.pageType = options.pageType
}
// this.loadData(options.sn)
this.pageNo = 1;
},
onReachBottom() {
// console.log("============================")
this.pageNo++;
uni.showLoading({
title: '加载中'
})
// this.loadData()
},
methods: {
confirmTimeRange(e, index) {
console.log(e, index)
// this.form.plannedMakeBeamBeginTime = e[0]
// this.form.plannedMakeBeamEndTime = e[1]
// console.log("制梁时间选择", e)
},
playVideoFn(item) {
uni.navigateTo({
url: './playBackVideo'
})
},
//获取项目视频
loadData(sn) {
var that = this
this.sendRequest({
url: "xmgl/company/getComapnyStatisticsList",
data: {
sn: sn,
videoType: 1
},
method: "POST",
success(res) {
console.log('找封面', res)
that.videoList = res.result.videoList
}
})
},
}
}
</script>
<style lang="scss" scoped>
.fullHeight{
background-color: #F4F5FD;
}
.date-search{
display: flex;
align-items: center;
padding: 12rpx 18rpx;
background: #FFFFFF;
.btn-style{
width: 120rpx;
height: 68rpx;
line-height: 68rpx;
background: #5181F6;
border-radius: 6rpx;
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
font-size: 24rpx;
color: #FFFFFF;
text-align: center;
margin-left: 36rpx;
}
}
.videoBox {
padding: 0rpx 20rpx 40rpx 20rpx;
overflow: hidden;
margin-top: 32rpx;
}
.videoItem:not(:last-child){
margin-bottom: 10rpx;
}
.videoItem {
display: flex;
width: 100%;
background: #FFFFFF;
border-radius: 10rpx;
padding: 16rpx 8rpx;
.videoPoster {
width: 208rpx;
height: 208rpx;
background: rgba(141,141,141,0.83);
border-radius: 8rpx;
display: flex;
align-items: center;
justify-content: center;
.no_poster {
width: 110rpx;
height: 100rpx;
}
}
.back-time{
display: flex;
flex-direction: column;
justify-content: space-around;
margin-left: 62rpx;
.date-time{
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
font-size: 30rpx;
color: #9F9F9F;
}
.divider-text{
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 400;
font-size: 28rpx;
color: #272D45;
}
}
}
</style>