课程说明云点播

This commit is contained in:
@fawn-nine
2024-06-19 16:10:36 +08:00
parent 93dd4dfd41
commit de7e4fb7d7
11 changed files with 4291 additions and 261 deletions

View File

@@ -112,7 +112,12 @@
this.$emit('support',{index1,index,val})
},
getBackGround(src){
// console.log(src,'src')
if(src == '' || src == null){
return `background: url(./static/icon/morenAvavter.png); background-size: cover;`
}else{
return `background: url(${src});background-size: cover;`
}
},
formatRichText(html) { //控制图片大小
let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {

View File

@@ -130,6 +130,7 @@ $http.requestStart = function(options) {
options.header['token'] = storeUserInfo.token;
};
options.header['appType'] = 'medical';
// options.header['appType'] = 'sociology';
return options;
}
//请求结束

View File

@@ -34,7 +34,7 @@
<view class="" v-html="course.content">
</view>
</view>
</view>
</view>
<!-- <view class="containerBg"> -->
<view class="coursePart flexbox" v-if="librayList.length > 1">
<view :class="['item','flexbox',curId == item.id? 'active': '' ]" v-for="(item, index) in librayList"
@@ -43,6 +43,24 @@
<!-- <u-icon v-if="item.isBuy == 0 && curId != item.id" name="lock" color="#fff" size="28"></u-icon> -->
<view class="">{{item.title}}</view>
</view>
</view>
<view class="buyBox flexbox" v-if="this.librayList.length > 0 && this.librayList[this.curIndex].isBuy == 0">
<!-- 普通未购买 -->
<view class="item" style="font-size: 24rpx;">
<text>您还未购买此课程目录开通 <text style="font-weight: bold;">超级VIP</text>或购买课程均可观看课程</text>
</view>
<view class="item tbn flexbox">
<view class="saveBtn buybtn flexbox" @click="goBuy('halfFee')">
<u-icon name="bag" color="#fff" size="28"></u-icon>
<text>立即购买</text>
</view>
<view class="saveBtn vipBtn flexbox" @click="goBuy('halfFee')">
<uni-icons type="vip" size="28" color="#fff"></uni-icons>
<text>开通超级VIP</text>
</view>
</view>
</view>
<view :class="['courseList',fold ? 'fold' : '']" v-if="courseList.length > 0">
<!-- 目录是否已经购买 -->
@@ -57,13 +75,14 @@
@click="goToLearn()" text="继续学习"></uni-tag>
</view>
</view>
</view>
<uni-section style="background: transparent;" title="章节列表" type="line"></uni-section>
<view class="item" v-for="(item, index) in courseList" :key="index" >
<view class="" @click.stop="chooseChapter(item, index)">
<text >{{item.title}}</text>
<uni-tag v-if="item.isAudition == 1" style="margin-left: 10rpx;" :inverted="true" text="试听"
size="mini" type="primary" />
size="mini" type="primary" />
</view>
<view class="flexbox shitingLIst" style="" v-if="item.tryListen.length > 0">
<view class="item flexbox" v-for="(item2,index2) in item.tryListen" :key="index2">
@@ -83,27 +102,6 @@
color="#258feb" size="28"></u-icon></view>
<text> </text>
</view>
<view class="video_audio_audition_list">
<!-- 试听视频/音频列表 -->
</view>
<view class="buyBox flexbox" v-if="this.librayList[this.curIndex].isBuy == 0">
<!-- 普通未购买 -->
<view class="item">
<text>您还未购买此课程开通 <text style="font-weight: bold;">超级VIP</text> 购买课程 均可观看课程</text>
</view>
<view class="item tbn flexbox">
<view class="saveBtn buybtn flexbox" @click="goBuy('halfFee')">
<u-icon name="bag" color="#fff" size="28"></u-icon>
<text>立即购买</text>
</view>
<view class="saveBtn vipBtn flexbox" @click="goBuy('halfFee')">
<uni-icons type="vip" size="28" color="#fff"></uni-icons>
<text>开通超级VIP</text>
</view>
</view>
</view>
</view>
<u-divider v-else text="暂无数据"></u-divider>
<!-- <uni-section class="mb-10" title="教学体系" type="line"> -->
@@ -629,7 +627,7 @@
}
})
this.sayList = this.sayList.concat(myList)
console.log('this.sayList处理后 =》 ', this.sayList)
// console.log('this.sayList处理后 =》 ', this.sayList)
if (res.page.pages > this.pPage) {
this.status = 0
} else {
@@ -821,11 +819,10 @@
this.proPriceList = []
},
choosePrice(item) {
console.log(item, 'choosePrice')
// console.log(item, 'choosePrice')
this.curProId = item.productId
},
async chooseChapter(item, index) {
console.log('获取试听内容')
async chooseChapter(item, index) {
if (item.isAudition == 1) {
// 未购买仅试听
// let data = null
@@ -918,7 +915,7 @@
background-color: #d3f9e8;
// color: #fff;
font-size: 26rpx;
margin: 20rpx 0;
// margin: 20rpx 0;
padding: 10rpx 20rpx;
.flexbox {
@@ -1349,19 +1346,22 @@
}
.buyBox {
position: fixed;
z-index: 2;
bottom: 100rpx;
left: 0;
// position: fixed;
// z-index: 2;
// bottom: 100rpx;
// left: 0;
@include pleft_right(4px);
// @include mshadow(10px, 1);
padding: 20rpx 10rpx;
width: 100%;
font-size: 28rpx;
flex-wrap: wrap;
background: rgba(255, 255, 255, 0.9);
background-image: linear-gradient(60deg, #e0e9f6 0%,#ece6fa 30%,#d7e8f0 60%, #fff 100%);
// background: rgba(255, 255, 255, 0.9);
.item {
width: 100%;
text-align: center;
text-align: center; line-height: 70rpx !important;
}
@@ -1423,6 +1423,7 @@
.courseList {
position: relative;
padding-bottom: 50px;
// background-color: #fff;
// padding: 0 20rpx;
background-image: linear-gradient(0deg, #e9f0ff 0%, #fbfbff 100%);

View File

@@ -3,64 +3,34 @@
<!-- 公共组件-每个页面必须引入 -->
<public-module></public-module>
<z-nav-bar :title="courseInfo.id ? courseTitle : '课程说明'">
<uni-icons type="bars" class="topRight" slot="right" @click="showDrawer('showRight')" size="22"></uni-icons>
<!-- <uni-icons type="bars" class="topRight" slot="right" @click="showDrawer('showRight')" size="22"></uni-icons> -->
</z-nav-bar>
<view class="containerBg">
<view class="example-body">
<!-- <button type="primary" @click="showDrawer('showRight')"><text class="word-btn-white">全部课程</text>
</button> -->
<uni-drawer ref="showRight" mode="right" :width="320" @change="changeD($event,'showRight')">
<view class="close">
<view class="zhan" style="width: 100%;"></view>
<u-icon name="close" @click="closeDrawer('showRight')" color="#2979ff" size="28"></u-icon>
</view>
<view class="proTitle">
<text>点击课程名称即可查看对应的课程说明</text>
</view>
<uni-collapse accordion v-model="accordionVal" v-if="treeList.length > 0" @change="collapseChange">
<uni-collapse-item v-for="(item, index) in treeList" :key="index" :title="item.title"
:show-animation="true">
<view class="content">
<!-- <text class="text">{{item.title}}</text> -->
<view class="sub1List">
<view :class="['item', 'leve2',curId == item1.id ? 'active' : '']"
v-for="(item1, index1) in item.children" :key="index1"
@click.stop="clickCourseInfo(item1)">
<text class="textss"> {{item1.title}}</text>
<view class="sub2List" v-if="item1.children">
<view :class="['item', 'leve3',curId == item2.id ? 'active' : '']"
v-for="(item2, index2) in item1.children" :key="index2"
@click.stop="clickCourseInfo(item2)">
<text class="textss">{{item2.title}}</text>
<view class="sub3List" v-if="item2.children">
<view :class="['item', 'leve4',curId == item3.id ? 'active' : '']"
v-for="(item3, index3) in item2.children" :key="index3"
@click.stop="clickCourseInfo(item3)">
<text class="textss">{{item3.title}}33</text>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</uni-collapse-item>
</uni-collapse>
</uni-drawer>
<view class="" style="background: #55aaff;">
<u-tabs :class="['tabList']" @click="tabChange" :current="curTagIndex"
:activeStyle="activeStyle" :scrollable="scrollable" lineColor="#ef9f00" :list="tabList" :inactiveStyle="{
color: '#fff', }"
itemStyle="padding-left: 15px; padding-right: 15px; height: 50px;"></u-tabs>
</view>
<view class="tabLeve1 subItem flexbox" v-if="Leve1.length > 0">
<text :class="[leve1Index == index ? 'cur' : '']" v-for="(item, index) in Leve1" :key="index" @click="leve1Click(item, index)">{{item.title}}</text>
</view>
<view class="tabLeve2 subItem flexbox" v-if="Leve2.length > 0">
<text :class="[leve2Index == index ? 'cur' : '']" v-for="(item, index) in Leve2" :key="index" @click="leve2Click(item, index)">{{item.title}}</text>
</view>
<view class="tabLeve3 subItem flexbox" v-if="Leve3.length > 0">
<text :class="[leve3Index == index ? 'cur' : '']" v-for="(item, index) in Leve3" :key="index" @click="leve3Click(item, index)">{{item.title}}</text>
</view>
<view class="containerBg">
<view class="infoBox" v-if="courseInfo.id">
<uni-section :title="courseTitle" type="line" titleFontSize="16px">
<rich-text v-if="courseInfo.content" class="content"
:nodes="formatRichText(courseInfo.content)"></rich-text>
<!-- <text>超强树选择器树组件树插件无限级联树单选树多选树自定义样式树树形选择 </text> -->
<view class="audio" v-if="courseInfo.mediaType == 2 && courseInfo.media != ''">
<audio style="text-align: left" :src="current.src" :poster="current.poster" :name="current.name"
:author="current.author" :action="audioAction" controls></audio>
<view class="audio" style="margin-bottom: 20rpx;" v-if="courseInfo.mediaType == 2 && courseInfo.media != ''">
<audio style="text-align: left" :src="courseInfo.media" :poster="audioPoster" :name="courseTitle"
author="吴门医述" :action="audioAction" controls></audio>
</view>
<view>
<view v-if="courseInfo.mediaType ==1 && courseInfo.media != ''" style="width: 100%;height: 100%;text-align: center;" v-html="videoHTML">
</view>
<!-- <view v-if="courseInfo.mediaType ==1 && courseInfo.media != ''" style="width: 100%;height: 100%;text-align: center;" v-html="videoHTML">
</view> -->
<!-- 视频播放器样式 -->
<!-- <view class="videoTemp" v-show="showTemp">
<u-icon name="play-circle" color="#fff" size="40" @click="clickToPlay"></u-icon>
@@ -71,6 +41,12 @@
enable-danmu danmu-btn controls @ended="playEnd"></video> -->
<!-- </view> -->
</view>
<rich-text v-if="courseInfo.content" class="content"
:nodes="formatRichText(courseInfo.content)"></rich-text>
<!-- <text>超强树选择器树组件树插件无限级联树单选树多选树自定义样式树树形选择 </text> -->
</uni-section>
</view>
</view>
@@ -89,18 +65,44 @@
export default {
data() {
return {
playData: {},
playData: {},
Leve1:[],
Leve2:[],
Leve3:[],
accordionVal: '',
// extraIcon:{
// color: '#4cd964',
// size: '100',
// }
scrollable:true,
treeList: [],
tagId: null,
pid: null,
bgiStyle: {
background: '#fff'
},
curTagIndex:0,
leve1Index:null,
leve2Index:null,
leve3Index:null,
iconStyle: {
fontSize: '40rpx',
fontWeight: 'bold',
color: '#258feb',
},
tabList:[
],
activeStyle: {
color: '#fff',
fontWeight: 'bold', padding:'20rpx',
transform: 'scale(1.2)',
backgroundColor: '#ef9f00'
},
courseInfo: {},
poster:'../../static/videoF.jpg', //封面图
audioPoster:'../../static/logo.png',
current: {
poster: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/music-a.png',
name: '致爱丽丝',
@@ -114,6 +116,7 @@
courseTitle: '',
showTemp:true,
videoContext:null,
videoUrl:'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4'
};
},
@@ -153,34 +156,78 @@
},
//方法
methods: {
showDrawer(e) {
this.$refs[e].open()
this.videoContext.pause()
this.showTemp = true
console.log(5555)
},
// 关闭窗口
closeDrawer(e) {
this.$refs[e].close()
},
collapseChange(e){
console.log(e,'折叠面板点击');
if(e){
this.tagId = this.treeList[e].id
this.getCourseInfo(this.tagId)
// this.closeDrawer('showRight')
tabChange(e){
console.log(e,'e');
let _index = e.index
this.clickCourseInfo(this.treeList[_index])
this.curTagIndex = _index
this.leve1Index = null
this.leve2Index = null
this.leve3Index = null
if(this.treeList[_index].isLast == 0 && this.treeList[_index].children.length > 0){
this.Leve1 = this.treeList[_index].children
if(this.Leve1[0].isLast == 0 && this.Leve1[0].children.length > 0){
this.Leve2 = this.Leve1[0].children
// console.log(this.Leve2,'Leve2');
if(this.Leve2[0].isLast == 0 && this.Leve2[0].children.length > 0){
this.Leve3 = this.Leve2[0].children
}else{
this.Leve3 = []
}
}else{
this.Leve2 = []
this.Leve3 = []
}
}else{
this.Leve1 = []
this.Leve2 = []
this.Leve3 = []
}
},
changeD(e, type) {
// console.log((type === 'showRight' ? '左窗口' : '右窗口') + (e ? '打开' : '关闭'));
this[type] = e
if(!e){
this.showTemp = false
console.log('关闭弹窗')
this.videoContext.play()
leve1Click(val, index){
console.log(this.Leve1[index],'val');
this.leve1Index = index
this.leve2Index = null
this.leve3Index = null
this.clickCourseInfo(val)
if(this.Leve1[index].isLast == 0 && this.Leve1[index].children.length > 0){
this.Leve2 = this.Leve1[index].children
console.log(this.Leve2,'Leve2');
}else{
this.Leve2 = []
this.Leve3 = []
}
},
leve2Click(val, index){
this.leve2Index = index
if(this.leve1Index == null){
this.leve1Index = 0
}
this.leve3Index = null
// console.log(val,'三级点击');
this.clickCourseInfo(val)
if(this.Leve2[index].isLast == 0 && this.Leve2[index].children.length > 0){
this.Leve3 = this.Leve2[index].children
}else{
this.Leve3 = []
}
},
leve3Click(val, index){
this.leve3Index = index
// console.log(val,'四级点击');
if(this.leve2Index == null){
this.leve2Index = 0
}
if(this.leve1Index == null){
this.leve1Index = 0
}
this.clickCourseInfo(val)
// if(this.Leve3[index].isLast == 0){
// this.Leve3 = this.Leve2[index].children
// }
},
formatRichText(html) { //控制图片大小
let newContent = html.replace(/<img[^>]*>/gi, function (match, capture) {
match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '');
@@ -198,15 +245,39 @@
'<img style="max-width:100%;height:auto;display:inline-block;margin:10rpx auto;"');
return newContent;
},
getData() {
getData() {
this.$http
.post('medical/home/getCourseMedicalTree')
.then(res => {
if (res.code == 0 && res.labels.length > 0) {
this.tabList = []
this.treeList = res.labels
if(this.treeList[0].isLast == 0 && this.treeList[0].children.length > 0){
this.Leve1 = this.treeList[0].children
if(this.Leve1[0].isLast == 0 && this.Leve1[0].children.length > 0){
this.Leve2 = this.Leve1[0].children
// console.log(this.Leve2,'Leve2');
if(this.Leve2[0].isLast == 0 && this.Leve2[0].children.length > 0){
this.Leve3 = this.Leve2[0].children
}else{
this.Leve3 = []
}
}else{
this.Leve2 = []
this.Leve3 = []
}
}else{
this.Leve1 = []
this.Leve2 = []
this.Leve3 = []
}
res.labels.forEach( item => {
this.tabList.push({id:item.id, name: item.title})
})
this.getCourseInfo(this.treeList[0].id)
// console.log(this.treeList[0].id,'+++++')
this.showDrawer('showRight')
// this.showDrawer('showRight')
} else {
this.treeList = []
}
@@ -232,9 +303,10 @@
this.courseTitle = this.courseInfo.title + '课程说明'
this.curId = id
if(this.courseInfo.mediaType == 1 && this.courseInfo.media != ''){
// this.videoUrl = this.courseInfo.media
this.videoUrl = this.courseInfo.media
// this.poster = this.videoUrl +
// "?x-oss-process=video/snapshot,t_0,f_jpg"
// this.getVideoPath(this.courseInfo.media)
}else{
// this.videoUrl = ''
this.poster = ''
@@ -255,10 +327,31 @@
console.log(e, '课程详情报错')
});
},
clickCourseInfo(item) {
this.getCourseInfo(item.id)
this.closeDrawer('showRight')
// 获得播放地址
getVideoPath(str){
console.log(str,'str');
$http.request({
url: "sociology/course/checkVideo",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
data: {
id: str
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
},
})
// this.$http
// .post('sociology/course/checkVideo',{
// id: str
// })
.then(res => {
console.log(res,'res');
}).catch(e => {
console.log(e,'获取视频播放地址错误');
})
},
clickCourseInfo(item) {
this.getCourseInfo(item.id)
},
playEnd(){
this.showTemp = true
@@ -274,25 +367,25 @@
<style lang="scss" scoped>
@import '@/style/mixin.scss';
::v-deep .containerBg {
// .uni-collapse-item__title-box {
// background-color: transparent !important;
// }
// .uni-collapse-item__title {
// background-image: linear-gradient(90deg, #258feb 0%, #00e1ec 100%) !important;
// text {
// color: #fff !important;
// font-size: 28rpx !important;
// }
// }
::v-deep .containerBg {
.uni-audio-default{width: 100% !important;}
#myVideo {
width: 100% !important;
}
video{width: 100% !important; }
}
.flexbox{display: flex;}
.subItem{
background-color: #ebeef5; padding: 10rpx;
flex-wrap: wrap;
justify-content:start;
text{display: inline-block; width: calc(25% - 8rpx); text-align: center; border-radius: 10rpx; color: #258feb; padding: 10rpx 20rpx; border: 1px solid #258feb;
margin: 6rpx 0; font-size: 26rpx; margin-right: 10rpx;
}
text:last-child{margin-right: 0 !important;}
.cur{background: #258feb; display: inline-block; color: #fff; border-radius: 10rpx; padding: 10rpx 20rpx; }
}
.close {
display: flex;
justify-content: right;

View File

@@ -3,75 +3,49 @@
<!-- 公共组件-每个页面必须引入 -->
<public-module></public-module>
<z-nav-bar :title="courseInfo.id ? courseTitle : '课程说明'">
<uni-icons type="bars" class="topRight" slot="right" @click="showDrawer('showRight')" size="22"></uni-icons>
<!-- <uni-icons type="bars" class="topRight" slot="right" @click="showDrawer('showRight')" size="22"></uni-icons> -->
</z-nav-bar>
<view class="" style="background: #55aaff;">
<u-tabs :class="['tabList']" @click="tabChange" :current="curTagIndex" :activeStyle="activeStyle"
:scrollable="scrollable" lineColor="#ef9f00" :list="tabList" :inactiveStyle="{
color: '#fff', }" itemStyle="padding-left: 15px; padding-right: 15px; height: 50px;"></u-tabs>
</view>
<view class="tabLeve1 subItem flexbox" v-if="Leve1.length > 0">
<text :class="[leve1Index == index ? 'cur' : '']" v-for="(item, index) in Leve1" :key="index"
@click="leve1Click(item, index)">{{item.title}}</text>
</view>
<view class="tabLeve2 subItem flexbox" v-if="Leve2.length > 0">
<text :class="[leve2Index == index ? 'cur' : '']" v-for="(item, index) in Leve2" :key="index"
@click="leve2Click(item, index)">{{item.title}}</text>
</view>
<view class="tabLeve3 subItem flexbox" v-if="Leve3.length > 0">
<text :class="[leve3Index == index ? 'cur' : '']" v-for="(item, index) in Leve3" :key="index"
@click="leve3Click(item, index)">{{item.title}}</text>
</view>
<view class="containerBg">
<view class="example-body">
<!-- <button type="primary" @click="showDrawer('showRight')"><text class="word-btn-white">全部课程</text>
</button> -->
<uni-drawer ref="showRight" mode="right" :width="320" @change="changeD($event,'showRight')">
<view class="close">
<view class="zhan" style="width: 100%;"></view>
<u-icon name="close" @click="closeDrawer('showRight')" color="#2979ff" size="28"></u-icon>
</view>
<view class="proTitle">
<text>点击课程名称即可查看对应的课程说明</text>
</view>
<uni-collapse accordion v-model="accordionVal" v-if="treeList.length > 0" @change="collapseChange">
<uni-collapse-item v-for="(item, index) in treeList" :key="index" :title="item.title"
:show-animation="true">
<view class="content">
<!-- <text class="text">{{item.title}}</text> -->
<view class="sub1List">
<view :class="['item', 'leve2',curId == item1.id ? 'active' : '']"
v-for="(item1, index1) in item.children" :key="index1"
@click.stop="clickCourseInfo(item1)">
<text class="textss"> {{item1.title}}</text>
<view class="sub2List" v-if="item1.children">
<view :class="['item', 'leve3',curId == item2.id ? 'active' : '']"
v-for="(item2, index2) in item1.children" :key="index2"
@click.stop="clickCourseInfo(item2)">
<text class="textss">{{item2.title}}</text>
<view class="sub3List" v-if="item2.children">
<view :class="['item', 'leve4',curId == item3.id ? 'active' : '']"
v-for="(item3, index3) in item2.children" :key="index3"
@click.stop="clickCourseInfo(item3)">
<text class="textss">{{item3.title}}33</text>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</uni-collapse-item>
</uni-collapse>
</uni-drawer>
</view>
<view class="infoBox" v-if="courseInfo.id">
<uni-section :title="courseTitle" type="line" titleFontSize="16px">
<rich-text v-if="courseInfo.content" class="content"
:nodes="formatRichText(courseInfo.content)"></rich-text>
<!-- <text>超强树选择器树组件树插件无限级联树单选树多选树自定义样式树树形选择 </text> -->
<view class="audio" v-if="courseInfo.mediaType == 2 && courseInfo.media != ''">
<audio style="text-align: left" :src="current.src" :poster="current.poster" :name="current.name"
:author="current.author" :action="audioAction" controls></audio>
<view class="audio" style="margin-bottom: 20rpx;"
v-if="courseInfo.mediaType == 2 && courseInfo.media != ''">
<audio style="text-align: left" :src="courseInfo.media" :poster="audioPoster"
:name="courseTitle" author="吴门医述" :action="audioAction" controls></audio>
</view>
<view>
<view v-if="courseInfo.mediaType ==1 && courseInfo.media != ''"
style="width: 100%;height: 100%;text-align: center;" v-html="videoHTML">
<!-- <view v-if="courseInfo.mediaType ==1 && courseInfo.media != ''" style="width: 100%;height: 100%;text-align: center;" v-html="videoHTML">
</view> -->
<view class="container" v-if="courseInfo.mediaType ==1 && courseInfo.media != ''">
<div ref="videoContent" @tap="renderScript.handleClick" id="url-player-test"
:videoData="videoData" :change:videoData="renderScript.receiveMsg"></div>
</view>
<!-- 视频播放器样式 -->
<!-- <view class="videoTemp" v-show="showTemp">
<u-icon name="play-circle" color="#fff" size="40" @click="clickToPlay"></u-icon>
<image src="../../static/video.jpg" mode="aspectFit"></image>
</view> -->
<!-- <view class="" v-if="!showTemp"> -->
<!-- <video ref="myVideo" id="myVideo" poster="../../static/videoF.jpg" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4"
enable-danmu danmu-btn controls @ended="playEnd"></video> -->
<!-- </view> -->
</view>
<!-- <rich-text v-if="courseInfo.content" class="content"
:nodes="formatRichText(courseInfo.content)"></rich-text> -->
<!-- <text>超强树选择器树组件树插件无限级联树单选树多选树自定义样式树树形选择 </text> -->
</uni-section>
</view>
</view>
@@ -79,7 +53,6 @@
<!-- <music-play :playData="playData"></music-play> -->
</view>
</template>
<script>
// import musicPlay from '@/components/music.vue'
import $http from '@/config/requestConfig.js';
@@ -91,18 +64,48 @@
data() {
return {
playData: {},
value: ['0'],
accordionVal: '0',
Leve1: [],
Leve2: [],
Leve3: [],
accordionVal: '',
options: {},//上个页面获取的视频参数视频id
playAuth: "", //播放凭证
videoId: "", //阿里云视频id
videoData: {}, //阿里云视频其他参数
// extraIcon:{
// color: '#4cd964',
// size: '100',
// }
scrollable: true,
treeList: [],
tagId: null,
pid: null,
bgiStyle: {
background: '#fff'
},
curTagIndex: null,
leve1Index: null,
leve2Index: null,
leve3Index: null,
iconStyle: {
fontSize: '40rpx',
fontWeight: 'bold',
color: '#258feb',
},
tabList: [
],
activeStyle: {
color: '#fff',
fontWeight: 'bold',
padding: '20rpx',
transform: 'scale(1.2)',
backgroundColor: '#ef9f00'
},
courseInfo: {},
poster: '../../static/videoF.jpg', //封面图
audioPoster: '../../static/logo.png',
current: {
poster: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/music-a.png',
name: '致爱丽丝',
@@ -116,6 +119,7 @@
courseTitle: '',
showTemp: true,
videoContext: null,
videoUrl: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4'
};
},
@@ -154,29 +158,97 @@
components: {
// musicPlay
},
created() {
// this.getLive();//获取播放凭证
},
//方法
methods: {
showDrawer(e) {
this.$refs[e].open()
this.videoContext.pause()
this.showTemp = true
console.log(5555)
},
// 关闭窗口
closeDrawer(e) {
this.$refs[e].close()
// 获取数据
getLive(playAuthsss) {
//playAuth 是播放凭证 通过后端自己根据api去获取返回时不知道为什么结束会带有 = 有时候甚至是2个 所以要截取等号 不然不能播放
var playAuth = playAuthsss.replace(/=/g, "");
this.videoData = {
// ...res.video,//视频其他信息
videoId: this.videoId,//阿里云视频id
playAuth: playAuth,//阿里云播放凭证
};
this.playAuth = playAuth;
this.$forceUpdate();
},
tabChange(e) {
console.log(e, 'e');
let _index = e.index
this.clickCourseInfo(this.treeList[_index])
this.curTagIndex = _index
this.leve1Index = null
this.leve2Index = null
this.leve3Index = null
if (this.treeList[_index].isLast == 0 && this.treeList[_index].children.length > 0) {
this.Leve1 = this.treeList[_index].children
if (this.Leve1[0].isLast == 0 && this.Leve1[0].children.length > 0) {
this.Leve2 = this.Leve1[0].children
// console.log(this.Leve2,'Leve2');
if (this.Leve2[0].isLast == 0 && this.Leve2[0].children.length > 0) {
this.Leve3 = this.Leve2[0].children
} else {
this.Leve3 = []
}
} else {
this.Leve2 = []
this.Leve3 = []
}
},
changeD(e, type) {
// console.log((type === 'showRight' ? '左窗口' : '右窗口') + (e ? '打开' : '关闭'));
this[type] = e
if (!e) {
this.showTemp = false
console.log('关闭弹窗')
this.videoContext.play()
} else {
this.Leve1 = []
this.Leve2 = []
this.Leve3 = []
}
},
leve1Click(val, index) {
console.log(this.Leve1[index], 'val');
this.leve1Index = index
this.leve2Index = null
this.leve3Index = null
this.clickCourseInfo(val)
if (this.Leve1[index].isLast == 0 && this.Leve1[index].children.length > 0) {
this.Leve2 = this.Leve1[index].children
console.log(this.Leve2, 'Leve2');
} else {
this.Leve2 = []
this.Leve3 = []
}
},
leve2Click(val, index) {
this.leve2Index = index
if (this.leve1Index == null) {
this.leve1Index = 0
}
this.leve3Index = null
// console.log(val,'三级点击');
this.clickCourseInfo(val)
if (this.Leve2[index].isLast == 0 && this.Leve2[index].children.length > 0) {
this.Leve3 = this.Leve2[index].children
} else {
this.Leve3 = []
}
},
leve3Click(val, index) {
this.leve3Index = index
// console.log(val,'四级点击');
if (this.leve2Index == null) {
this.leve2Index = 0
}
if (this.leve1Index == null) {
this.leve1Index = 0
}
this.clickCourseInfo(val)
// if(this.Leve3[index].isLast == 0){
// this.Leve3 = this.Leve2[index].children
// }
},
formatRichText(html) { //控制图片大小
let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, '');
@@ -194,21 +266,65 @@
'<img style="max-width:100%;height:auto;display:inline-block;margin:10rpx auto;"');
return newContent;
},
collapseChange(e) {
console.log(e, '折叠面板点击');
if (e) {
this.tagId = this.treeList[e].id
this.getCourseInfo(this.tagId)
// this.closeDrawer('showRight')
}
},
getData() {
this.$http
.post('medical/home/getCourseMedicalTree')
.then(res => {
if (res.code == 0 && res.labels.length > 0) {
this.tabList = []
res.labels.forEach((item, index) => {
this.tabList.push({
id: item.id,
name: item.title
})
if (item.id == this.pid) {
this.curTagIndex = index
console.log(this.curTagIndex)
}
})
this.treeList = res.labels
if (this.treeList[this.curTagIndex].isLast == 0 && this.treeList[this.curTagIndex].children
.length > 0) {
this.Leve1 = this.treeList[this.curTagIndex].children
this.Leve1.forEach((item, index) => {
if (item.id == this.tagId) {
this.leve1Index = index
}
})
if (this.Leve1[0].isLast == 0 && this.Leve1[0].children.length > 0) {
this.Leve2 = this.Leve1[0].children
this.Leve2.forEach((item, index) => {
if (item.id == this.tagId) {
this.leve2Index = index
}
})
// console.log(this.Leve2,'Leve2');
if (this.Leve2[0].isLast == 0 && this.Leve2[0].children.length > 0) {
this.Leve3 = this.Leve2[0].children
this.Leve3.forEach((item, index) => {
if (item.id == this.tagId) {
this.leve3Index = index
}
})
} else {
this.Leve3 = []
}
} else {
this.Leve2 = []
this.Leve3 = []
}
} else {
this.Leve1 = []
this.Leve2 = []
this.Leve3 = []
}
// this.getCourseInfo(this.treeList[0].id)
// console.log(this.treeList[0].id,'+++++')
// this.showDrawer('showRight')
} else {
this.curTagIndex = 0
this.treeList = []
}
}).catch(e => {
@@ -227,15 +343,20 @@
'Content-Type': 'application/json'
},
})
.then(res => {
.then(async res => {
if (res.code == 0 && res.course.id) {
this.courseInfo = res.course
this.courseTitle = this.courseInfo.title + '课程说明'
this.curId = id
if (this.courseInfo.mediaType == 1 && this.courseInfo.media != '') {
// this.videoUrl = this.courseInfo.media
// this.poster = this.videoUrl +
// "?x-oss-process=video/snapshot,t_0,f_jpg"
this.videoId = this.courseInfo.media
this.videoUrl = await this.getVideoPath(this.courseInfo.media)
this.getLive(this.videoUrl)
console.log()
// this.videoData = {
// videoId: this.videoId,//阿里云视频id
// playAuth: this.videoUrl,//阿里云播放凭证
// }
} else {
// this.videoUrl = ''
this.poster = ''
@@ -256,10 +377,36 @@
console.log(e, '课程详情报错')
});
},
// 获得播放地址
async getVideoPath(str) {
// console.log(str, 'str');
let path = ''
await $http.request({
url: "medical/course/checkVideoByMD",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
data: {
id: str
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
},
})
// this.$http
// .post('sociology/course/checkVideo',{
// id: str
// })
.then(res => {
if (res.code == 0) {
// console.log(res, 'res');
path = res.playAuth
}
}).catch(e => {
console.log(e, '获取视频播放地址错误');
})
return path
},
clickCourseInfo(item) {
this.getCourseInfo(item.id)
this.closeDrawer('showRight')
},
playEnd() {
this.showTemp = true
@@ -272,22 +419,97 @@
},
};
</script>
<script module="renderScript" lang="renderjs">
export default {
mounted() {
// 在适合的生命周期通过script和link标签引入播放器sdk、css
this.loadWebPlayerSDK()
},
data() {
return {
player: null,
}
},
methods: {
getLive() {
//配置播放器
var player = new Aliplayer({
id: "url-player-test",
"vid": this.videoData.videoId, // 必选参数,可以通过点播控制台(路径:媒资库>音/视频查询。示例1e067a2831b641db90d570b6480f****。
"playauth": this.videoData.playAuth, // 必选参数参数值可通过调用GetVideoPlayAuth接口获取。
"encryptType": 1, // 必选参数当播放私有加密流时需要设置本参数值为1。其它情况无需设置。
"playConfig": {
"EncryptType": 'AliyunVoDEncryption'
},
width: '100%', //容器的大小
height: '600rpx', //容器的大小
}, function(player) { });
this.player = player;
player.one('canplay', function() {
// console.log('canplay', this.player.tag);
player.tag.play();
});
},
//监听获取播放凭证的方法
checkValue() {
console.log(this.videoId, this.videoData.playAuth, "1111888888")
if (!this.videoData.playAuth) {
setTimeout(() => {
this.checkValue();
}, 2000);
} else {
this.getLive();
}
},
loadWebPlayerSDK() {
return new Promise((resolve, reject) => {
const s_tag = document.createElement('script'); // 引入播放器js
s_tag.type = 'text/javascript';
s_tag.src = 'https://g.alicdn.com/apsara-media-box/imp-web-player/2.20.3/aliplayer-min.js';
s_tag.charset = 'utf-8';
s_tag.onload = () => {
this.checkValue();
resolve();
}
document.body.appendChild(s_tag);
const l_tag = document.createElement('link'); // 引入播放器css
l_tag.rel = 'stylesheet';
l_tag.href =
'https://g.alicdn.com/apsara-media-box/imp-web-player/2.20.3/skins/default/aliplayer-min.css';
document.body.appendChild(l_tag);
});
},
loadComponent() {
return new Promise((resolve, reject) => {
const s_tag = document.createElement('script');
s_tag.type = 'text/javascript';
// 需要先下载组件 js 文件,放到项目 /static/ 目录下
// 下载地址https://github.com/aliyunvideo/AliyunPlayer_Web/blob/master/customComponents/dist/aliplayer-components/aliplayercomponents-1.0.9.min.js
s_tag.src = './utils/aliplayercomponents.min.js';
s_tag.charset = 'utf-8';
s_tag.onload = () => {
resolve();
}
document.body.appendChild(s_tag);
});
}
}
}
</script>
<style lang="scss" scoped>
@import '@/style/mixin.scss';
::v-deep .containerBg {
// .uni-collapse-item__title-box {
// background-color: transparent !important;
// }
.uni-audio-default {
width: 100% !important;
}
// .uni-collapse-item__title {
// background-image: linear-gradient(90deg, #258feb 0%, #00e1ec 100%) !important;
// text {
// color: #fff !important;
// font-size: 28rpx !important;
// }
// }
#myVideo {
width: 100% !important;
}
@@ -297,6 +519,42 @@
}
}
.flexbox {
display: flex;
}
.subItem {
background-color: #ebeef5;
padding: 10rpx;
flex-wrap: wrap;
justify-content: start;
text {
display: inline-block;
width: calc(25% - 8rpx);
text-align: center;
border-radius: 10rpx;
color: #258feb;
padding: 10rpx 20rpx;
border: 1px solid #258feb;
margin: 6rpx 0;
font-size: 26rpx;
margin-right: 10rpx;
}
text:last-child {
margin-right: 0 !important;
}
.cur {
background: #258feb;
display: inline-block;
color: #fff;
border-radius: 10rpx;
padding: 10rpx 20rpx;
}
}
.close {
display: flex;

View File

@@ -45,11 +45,13 @@
<text >课程观看有效期截止到2025-06-14 00:00 </text><uni-tag type="primary" text="继续学习"></uni-tag>
</view>
</view>
</view>
</view>
<view class="item" v-for="(item, index) in courseList" :key="index" @click="chooseChapter(item, index)">
<text>{{item.title}}</text>
<uni-tag v-if="librayList[curIndex].isBuy == 1 && item.isLearned == 0" style="" :inverted="true" text="未学"
size="mini" type="primary" />
<uni-tag v-if="librayList[curIndex].isBuy == 1 && item.isLearned == 1" style="" :inverted="true" text="已学"
size="mini" type="primary" />
</view>
<!-- <view class="showAll zhezhe" v-show="fold">
<view class="flexbox icon" @click="tozhankai()"><u-icon class="icon_item" name="arrow-left-double"
@@ -82,6 +84,16 @@
</view>
</view>
<u-divider v-else text="暂无数据"></u-divider>
<!-- <view class="">
<view class="" v-for="(item, index) in librayList" :key="index">
<view class="">
</view>
<view class="">
</view>
</view>
</view> -->
<uni-section class="mb-10 completionBg" title="学习进度" type="line" v-if="librayList.length > 0 && librayList[curIndex].completion > 0">
<view class="progress-box">
<progress :percent="librayList[curIndex].completion" show-info stroke-width="3" />
@@ -605,11 +617,15 @@
'Content-Type': 'application/json'
},
})
.then(res => {
.then( res => {
if (res.code == 0) {
this.course = res.data.course
this.pageTitle = this.course.title
this.librayList = res.data.catalogues
// this.librayList.map(async item => {
// item.courseList = await this.getChapters(item.id)
// })
// console.log(this.librayList,'this.librayList')
if (this.librayList.length > 0) {
this.catalogueId = this.librayList[0].id
this.curId = this.librayList[0].id
@@ -628,6 +644,7 @@
});
},
goBuy() {
$http.request({
url: "sociology/product/getProductListForCourse",
@@ -706,6 +723,33 @@
tozhankai() {
this.fold = false
},
async getChapters(id) {
let list = []
await $http.request({
url: "sociology/course/getCourseCatalogueChapterList",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
data: {
"id": id
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
},
})
.then(res => {
if (res.code == 0) {
if (res.chapterList.length > 0) {
list = res.chapterList
// console.log('status', res)
} else {
list = []
}
}
}).catch(e => {
console.log(e, '获取章节列表数据报错')
});
return list
},
getChapterList(id) {
$http.request({
url: "sociology/course/getCourseCatalogueChapterList",

View File

@@ -5,7 +5,7 @@
<z-nav-bar :title="pageTitle"></z-nav-bar>
<view class="learnBox box" >
<view class="newBox">
<view class="item flexbox" v-for="(item, index) in courseList" :key="index">
<view class="item flexbox" v-for="(item, index) in courseList" :key="index" @click="onPageJump('/pages/course/courseDetail',item.id, item.title)">
<!-- <view class="imgcontainer" :style="{backgroundImage:surl(item.image)}"> -->
<view class="imgcontainer">
<image :src="item.image" mode="aspectFit"></image>
@@ -88,6 +88,12 @@
},
//方法
methods: {
// 跳转
onPageJump(url,thatId,title) {
uni.navigateTo({
url: `${url}?id=${thatId}&title=${title}`
});
},
getData() {
if(!this.flag){
console.log('正在执行,未完成')

View File

@@ -22,10 +22,10 @@
<image src="../../static/my_01.png" mode="aspectFit"></image>
<text>学习大纲</text>
</div>
<div class="item flexbox" @click="onPageJump()">
<!-- <div class="item flexbox" @click="onPageJump()">
<image src="../../static/my_03.png" mode="aspectFit"></image>
<text>太湖讲堂</text>
</div>
</div> -->
<div class="item flexbox" @click="onPageJump()">
<image src="../../static/my_04.png" mode="aspectFit"></image>
<text>吴门医述</text>
@@ -68,7 +68,8 @@
</view>
</view>
<!-- 正在学习 -->
<view class="learnBox" v-if="learnList.length > 0">
<!-- <view class="" style="padding:0 5px;">
<view class="learnBox" >
<view class="titleBox flexbox">
<image src="../../static/learing.png" mode="aspectFit"></image>
<text>正在学习</text>
@@ -92,6 +93,7 @@
</view>
</view>
</view>
</view> -->
<!-- 健康超市 -->
<view class="supermarketBox" v-if="tjProList.length > 0">
<view class="hightLightTitleBox " @click="onPageJump()">
@@ -166,8 +168,6 @@
</view>
</view>
<view class="fourBox" v-if="tryListenList.length > 0">
<view class="learnBox" >
<view class="titleBox flexbox">
<image src="../../static/try_listen.png" mode="aspectFit"></image>
@@ -176,7 +176,8 @@
<view class="learn flexbox shiting">
<view class="item" v-for="(item, index) in tryListenList" :key="index" @click="onPageJump('/pages/course/courseDetail',item.id, item.title)">
<view class="imgcontainer">
<image :src="item.image" mode="aspectFit"></image>
<image v-if="item.image==''" src="@/static/nobg.jpg" mode="aspectFit"></image>
<image v-else :src="item.image" mode="aspectFit"></image>
</view>
<view class="buyItems flexbox">
<view class="txt555">
@@ -190,7 +191,7 @@
</view>
</view>
<view class="moreBox shiting">
<text @click="onPageJump('/pages/course/tryListen',26,'精彩试听')">更多试听</text>
<text @click="onPageJump('/pages/course/tryListen',1,'精彩试听')">更多试听</text>
</view>
</view>
</view>
@@ -383,8 +384,8 @@
url: "medical/home/getMarketCourseList",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
data: {
"id": 26,
"limit": 2,
"id": 1,
"limit": 6,
"page": 1
},
header: { //默认 无 说明:请求头
@@ -410,7 +411,7 @@
data: {
"current": 1,
"limit": 12,
"medicineMarketId": "29"
"medicineMarketId": "1"
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
@@ -476,7 +477,7 @@
data: {
"current": 1,
"limit": 4,
"medicineMarketId": "28"
"medicineMarketId": "2"
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
@@ -640,6 +641,7 @@
}
.shiting {
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 40rpx;

View File

@@ -190,7 +190,8 @@
'Content-Type': 'application/json'
},
}).then(res => {
if (res.code == 0 && res.page.records.length > 0) {
if (res.code == 0) {
if(res.page.records.length > 0){
var _list = res.page.records
this.productList = this.productList.concat(_list)
if (res.page.pages > this.pObj.page) {
@@ -199,7 +200,9 @@
// 加载完毕
this.pObj.status = 2
}
}else{
this.pObj.status = 3
}
}
this.pObj.pFlag = true
}).catch(e => {
@@ -225,7 +228,8 @@
'Content-Type': 'application/json'
},
}).then(res => {
if (res.code == 0 && res.page.records.length > 0) {
if (res.code == 0) {
if( res.page.records.length > 0){
var _list = res.page.records
this.newsList = this.newsList.concat(_list)
if (res.page.pages > this.nObj.page) {
@@ -234,7 +238,9 @@
// 加载完毕
this.nObj.status = 2
}
}else{
this.nObj.status = 3
}
}
this.nObj.nFlag = true
}).catch(e => {
@@ -249,6 +255,7 @@
}
this.tabId = e.id
console.log(e, '点击')
// this.getnewsData()
}
},
};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 50 KiB

3613
utils/aliplayercomponents.min.js vendored Normal file

File diff suppressed because one or more lines are too long