NurseStationPersonAppletUl/pages/Videolearningdetails/Videolearningdetails.vue

302 lines
7.3 KiB
Vue
Raw Normal View History

2023-04-21 15:44:00 +08:00
<template>
<view class="app">
<image class="topimage" :src="baseurl + list.trainingItemPosterUrl" mode=""></image>
<view class="title">
{{list.trainingItemTitle}}
</view>
<view class="border"></view>
<u-tabs :list="tablist" :is-scroll="false" :current="tabcurrent" @change="change" font-size='34' bar-height='3'>
</u-tabs>
<view class="detail" v-if="tabcurrent==0">
{{list.trainingItemDetails}}
</view>
<view class="directory" v-if="tabcurrent==1">
2023-04-23 14:06:07 +08:00
<view class="item" v-for="(item,index) in list.trainingOrderItemDirectoryList" :key="index">
2023-04-21 15:44:00 +08:00
<view class="text">
<span class='DirectoryName'>{{item.itemDirectoryName}}</span>
<span class='texttitle'>{{item.itemDirectoryTitle}}</span>
</view>
<view class="Introduce">
{{item.itemDirectoryIntroduce}}
</view>
2023-04-23 14:06:07 +08:00
<view class="play" style="background-color: #3D7DCA;color:#fff" v-if="!list.trainingOrderStatus"
@tap='videoplay(item)'>
2023-04-21 15:44:00 +08:00
开始播放
</view>
2023-04-23 14:06:07 +08:00
<view class="" v-else>
<view class="play" @tap='videoplay(item)'
:style="item.itemDirectoryWatchStatus=='NOT_WATCHED'?'background-color: #3D7DCA;color:#fff':''"
v-if="item.itemDirectoryWatchStatus=='NOT_WATCHED'">
开始播放
</view>
<view class="play"
:style="item.itemDirectoryWatchStatus=='WATCHED'?'background-color: #4271B9;color:#3D7DCA':''"
v-if="item.itemDirectoryWatchStatus=='WATCHED'">
继续播放
</view>
<view class="play"
:style="item.itemDirectoryWatchStatus=='FINISHED_READING'?'background-color: #E6E6E6;color:#76777B':''"
v-if="item.itemDirectoryWatchStatus=='FINISHED_READING'">
已看完
</view>
</view>
2023-04-21 15:44:00 +08:00
</view>
</view>
<view class="bottom" v-if="!list.trainingOrderStatus">
<view class="price">
{{list.trainingItemPrice}}
</view>
<view class="buy">
购买
</view>
</view>
2023-04-23 14:06:07 +08:00
<u-popup v-model="videoshow" mode="center" closeable @close='videoshowfalse'>
<view>
<video :src="baseurl+videoitem.itemDirectoryUrl" @timeupdate='videotimeupdate'
:initial-time='videoitem.watchTime'></video>
</view>
</u-popup>
2023-04-21 15:44:00 +08:00
</view>
</template>
<script>
import baseurl from '@/api/baseurl.js'
2023-04-23 14:06:07 +08:00
import {
insertTrainingItemWatchRecord,
getTrainingItemWatchRecord
} from '@/api/Videolearningdetails/index.js'
2023-04-21 15:44:00 +08:00
export default {
data() {
return {
baseurl: undefined,
2023-04-23 14:06:07 +08:00
nurseStationPersonId: undefined,
tabcurrent: 0, //tabsindex
tablist: [{ //tabs的list
2023-04-21 15:44:00 +08:00
name: '详情'
}, {
name: '目录'
}],
2023-04-23 14:06:07 +08:00
list: {}, //页面数据
videoshow: false, //视频开关
videoitem: {
watchTime: 0,
}, //视频对象
2023-04-21 15:44:00 +08:00
};
},
methods: {
2023-04-23 14:06:07 +08:00
//播放进度变化
videotimeupdate(e) {
//e.detail.currentTime是已经播放了多久e.detail.duration是该视频多长
this.videoitem.watchTime = e.detail.currentTime
},
//关闭播放弹出框
videoshowfalse() {
2023-04-24 10:49:20 +08:00
this.videoitem.watchTime = this.formatSeconds(this.videoitem.watchTime)
insertTrainingItemWatchRecord(this.videoitem).then(res => {})
2023-04-23 14:06:07 +08:00
},
//视频播放
videoplay(item) {
if (!item.watchTime) {
this.videoitem.watchTime = 0
}
this.videoitem = item
this.videoitem.trainingOrderId = this.list.trainingOrderId
this.videoitem.trainingItemId = this.list.trainingItemId
// this.videoitem.nurseStationPersonId = this.nurseStationPersonId
this.videoitem.nurseStationPersonId = 61
getTrainingItemWatchRecord(this.videoitem.trainingOrderId, this.videoitem.trainingItemId, this.videoitem
.trainingItemDirectoryId, this.videoitem.nurseStationPersonId).then(res => {
if (res.code == 200) {
if (res.data.watchTime) {
this.videoitem.watchTime = res.data.watchTime
2023-04-24 10:49:20 +08:00
this.videoitem.watchTime = this.formatsecond(this.videoitem.watchTime)
2023-04-23 14:06:07 +08:00
}
this.videoshow = true
}
})
},
2023-04-21 15:44:00 +08:00
//点击tabs
change(index) {
this.tabcurrent = index;
2023-04-24 10:49:20 +08:00
},
//时分秒转秒
formatsecond(value) {
value = value.split(':')
value.forEach(e => {
e = Number(e)
})
value[0] = value[0] * 24 * 60
value[1] = value[1] * 60
value = value[0] + value[1] + value[2]
return value
},
//秒转时分秒
formatSeconds(value) {
let result = parseInt(value)
let h = Math.floor(result / 3600) < 10 ? '0' + Math.floor(result / 3600) : Math.floor(result / 3600);
let m = Math.floor((result / 60 % 60)) < 10 ? '0' + Math.floor((result / 60 % 60)) : Math.floor((result /
60 % 60));
let s = Math.floor((result % 60)) < 10 ? '0' + Math.floor((result % 60)) : Math.floor((result % 60));
let res = '';
res += `${h}:`;
res += `${m}:`;
res += `${s}`;
return res;
},
2023-04-21 15:44:00 +08:00
},
onLoad(options) {
this.baseurl = baseurl
this.list = JSON.parse(options.list)
},
2023-04-23 14:06:07 +08:00
onShow() {
const that = this
const value = uni.getStorageSync('nursePersonId');
if (value) {
that.nurseStationPersonId = value
} else {}
},
2023-04-21 15:44:00 +08:00
}
</script>
<style lang="scss">
.app {
width: 96%;
padding: 0;
margin: 15rpx auto;
color: #666666;
background-color: #fff;
.directory {
padding-bottom: 420rpx;
.item {
position: relative;
width: 96%;
margin: 0 auto;
padding-bottom: 35rpx;
border-bottom: 1rpx solid #E6E6E6;
color: #888787;
.play {
font-size: 24rpx;
width: 141rpx;
height: 52rpx;
background: #E6E6E6;
border-radius: 5rpx;
line-height: 52rpx;
text-align: center;
position: absolute;
right: 30rpx;
top: 50%;
transform: translateY(-50%);
}
.Introduce {
width: 300rpx;
font-size: 26rpx;
line-height: 36rpx;
margin: 18rpx 0 0 176rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text {
margin-top: 40rpx;
.DirectoryName {
display: inline-block;
width: 176rpx;
font-size: 28rpx;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.texttitle {
display: inline-block;
width: 300rpx;
font-size: 32rpx;
font-weight: 400;
color: #666666;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
}
.bottom {
width: 100%;
height: 160rpx;
background: #FFFFFF;
box-shadow: 0rpx 1rpx 21rpx 0rpx rgba(204, 204, 204, 0.75);
position: fixed;
bottom: 0;
.buy {
width: 140rpx;
height: 60rpx;
background: #4271B9;
border-radius: 5rpx;
color: #fff;
text-align: center;
line-height: 60rpx;
position: absolute;
right: 60rpx;
top: 50%;
transform: translateY(-50%);
}
.price {
font-size: 42rpx;
font-weight: 500;
color: #EA706A;
line-height: 120rpx;
position: absolute;
left: 44rpx;
top: 50%;
transform: translateY(-50%);
}
}
.detail {
width: 90%;
margin: 40rpx auto 0;
font-size: 32rpx;
padding-bottom: 420rpx;
}
::v-deep .u-tabs {
width: 50% !important;
}
.border {
width: 94%;
margin: 40rpx auto;
border-bottom: 1rpx solid #E6E6E6;
}
.time {
font-size: 30rpx;
margin: 21rpx 0 0 20rpx;
}
.title {
font-size: 38rpx;
font-weight: 500;
color: #000000;
line-height: 36rpx;
margin: 36rpx 0 0 20rpx;
}
.topimage {
display: block;
width: 100%;
height: 407rpx;
border-radius: 5rpx;
}
}
</style>