|
@@ -1,8 +1,8 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
<view class="video-wrap">
|
|
|
- <video :src="could_play?'https://api.myjie.cn/static/viedo/ddd.mp4':''" id="videoId" class="top-video"
|
|
|
- :enable-progress-gesture="false" poster="https://api.myjie.cn/resource/user/user1/fw1.png"></video>
|
|
|
+ <video :src="could_play?chooseCourse.course_sp:''" id="videoId" class="top-video" :poster="topimg" v-if="chooseCourse.course_sp"></video>
|
|
|
+ <image :src="topimg" mode="widthFix" v-else class="top-video"></image>
|
|
|
<!-- 视频蒙版 -->
|
|
|
<!-- <view class="mask" v-if="!could_play" @click.stop=""></view> -->
|
|
|
</view>
|
|
@@ -16,21 +16,22 @@
|
|
|
<view class="" v-if="currentIndex == 0">
|
|
|
<view class="base-info">
|
|
|
<view class="info-tit">
|
|
|
- 深度了解阿强是个大傻逼
|
|
|
+ {{chooseCourse.course_topic}}
|
|
|
</view>
|
|
|
<view class="info-info flex">
|
|
|
<view class="info-item">
|
|
|
- 课程:共10节
|
|
|
+ 课程:共{{courseList.length}}节
|
|
|
</view>
|
|
|
<view class="hx">
|
|
|
|
|
|
</view>
|
|
|
<view class="info-item">
|
|
|
- 人数:522人学习
|
|
|
+ 人数:{{chooseCourse.course_play_count}}人学习
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="jianjie">
|
|
|
+ <audio :src="bq(chooseCourse.course_audio)" controls v-if="chooseCourse.course_audio" :name="chooseCourse.course_topic" author="母婴严选"></audio>
|
|
|
<view class="jianjie-top flex">
|
|
|
<view class="hx">
|
|
|
|
|
@@ -42,7 +43,7 @@
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="" v-html="content">
|
|
|
+ <view class="" v-html="chooseCourse.course_intro">
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
@@ -59,21 +60,21 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="kc-list">
|
|
|
- <view class="kc-item flex" v-for="item in 10">
|
|
|
- <image src="" mode="" class="kc-img"></image>
|
|
|
+ <view class="kc-item flex" v-for="item in recommendList" v-if="item.gr_id != id">
|
|
|
+ <image :src="item.indeximg.indexOf('http') == -1 ? ('https://myj.liuniu946.com' +item.indeximg) : item.indeximg" mode="" class="kc-img"></image>
|
|
|
<view class="kc-info">
|
|
|
<view class="info-tit clamp">
|
|
|
- 母婴行业必学舞蹈(邓晏老师视频)
|
|
|
+ {{item.title}}
|
|
|
</view>
|
|
|
<view class="info-cate clamp">
|
|
|
- 技术控必练习
|
|
|
+ {{item.ins}}
|
|
|
</view>
|
|
|
<view class="info-info flex">
|
|
|
<view class="rs">
|
|
|
- 100
|
|
|
+ {{item.count}}
|
|
|
</view>
|
|
|
<view class="visit">
|
|
|
- 555555
|
|
|
+ {{item.alll}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -85,22 +86,10 @@
|
|
|
<!-- 课程目录 -->
|
|
|
<view class="" v-if="currentIndex == 1">
|
|
|
<view class="kc-ml">
|
|
|
- <view class="ml-item flex">
|
|
|
+ <view class="ml-item flex" v-for="item in courseList" :key="item.course_id" @click="choose(item)">
|
|
|
<view class="bs"></view>
|
|
|
<view class="">
|
|
|
- 备孕必检查项目介绍【备孕系列课程】/3备孕必检查项目介绍【备孕系列课程】/3
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="ml-item flex">
|
|
|
- <view class="bs"></view>
|
|
|
- <view class="">
|
|
|
- 备孕必检查项目介绍【备孕系列课程】/3
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="ml-item flex">
|
|
|
- <view class="bs"></view>
|
|
|
- <view class="">
|
|
|
- 备孕必检查项目介绍【备孕系列课程】/3
|
|
|
+ {{item.course_topic}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -135,9 +124,24 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
+ import {
|
|
|
+ mapState,
|
|
|
+ mapMutations
|
|
|
+ } from 'vuex';
|
|
|
+ import {
|
|
|
+ getUser
|
|
|
+ } from '@/api/user.js';
|
|
|
+ import { getCourseList,recommend } from "@/api/index.js"
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ user: {},
|
|
|
+ choosId: 0,
|
|
|
+ recommendList: [],
|
|
|
+ topimg: '',
|
|
|
+ id: '',
|
|
|
+ courseList: [],
|
|
|
+ chooseCourse: {},
|
|
|
content: '<p>ddddddd</p>',
|
|
|
currentIndex: 0,
|
|
|
could_play: false,
|
|
@@ -146,9 +150,9 @@
|
|
|
}, {
|
|
|
title: '课程目录'
|
|
|
},
|
|
|
- {
|
|
|
- title: '讲师全部课程'
|
|
|
- }
|
|
|
+ // {
|
|
|
+ // title: '讲师全部课程'
|
|
|
+ // }
|
|
|
]
|
|
|
};
|
|
|
},
|
|
@@ -158,15 +162,163 @@
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
-
|
|
|
+
|
|
|
+ if(opt.id) {
|
|
|
+ this.id = opt.id
|
|
|
+ this.getCourseList()
|
|
|
+ }
|
|
|
+ if(opt.img ) {
|
|
|
+ let imgurl = decodeURI(opt.img)
|
|
|
+ console.log(this.topimg);
|
|
|
+ }
|
|
|
+ this.getrecommendList()
|
|
|
},
|
|
|
onShow() {
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
onReachBottom() {
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ ...mapMutations('user', ['setUserInfo']),
|
|
|
+ navTo(url) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url,
|
|
|
+ fail() {
|
|
|
+ uni.switchTab({
|
|
|
+ url
|
|
|
+ })
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getUser() {
|
|
|
+ console.log('data')
|
|
|
+ const that = this;
|
|
|
+ getUser({}).then((e) => {
|
|
|
+ this.user = e.data;
|
|
|
+ this.setUserInfo(e.data)
|
|
|
+ //
|
|
|
+ if(that.user.info_audit_status == 1 ) {
|
|
|
+ //双认证可播放
|
|
|
+ if(that.user.type_audit_status == 1) {
|
|
|
+ that.could_play = true
|
|
|
+ }else {
|
|
|
+ // 单次认证无平台认证
|
|
|
+ if(that.chooseCourse.course_price_3*1 > 0) {
|
|
|
+ //一次认证付费
|
|
|
+ that.could_play = false
|
|
|
+ let str = ''
|
|
|
+ if(that.user.type_audit_status == -2) {
|
|
|
+ str = '您未完成平台认证,是否立即认证?'
|
|
|
+ }
|
|
|
+ if(that.user.type_audit_status == -1) {
|
|
|
+ str = '您平台认证失败,请重新认证'
|
|
|
+ }
|
|
|
+ if(that.user.type_audit_status == -3) {
|
|
|
+ str = '您平台认证已失效,请重新认证'
|
|
|
+ }
|
|
|
+ if(that.user.type_audit_status == 0) {
|
|
|
+ str = '您已提交认证信息请等待认证结束'
|
|
|
+ }
|
|
|
+ uni.showModal({
|
|
|
+ title:'提示',
|
|
|
+ content:str?str:'您未完成平台认证,是否立即认证?',
|
|
|
+ complete(e) {
|
|
|
+ if(e.confirm) {
|
|
|
+ if (that.user.work_type_id <=0) {
|
|
|
+ that.navTo('/pages/user/model/modelrz?modelid='+that.user.show_template_id)
|
|
|
+ } else {
|
|
|
+ if (that.user.show_template_id) {
|
|
|
+ that.navTo('/pages/user/model/model?mtype=' + that.user.show_template_id+'&type=3')
|
|
|
+ }else{
|
|
|
+ uni.showModal({
|
|
|
+ title: '错误',
|
|
|
+ content: '您未购买模板请先购买',
|
|
|
+ showCancel: false,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+ }else {
|
|
|
+ //一次认证即免费
|
|
|
+ that.could_play = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ //无认证 免费
|
|
|
+ if(that.chooseCourse.course_price*1 == 0) {
|
|
|
+ that.could_play = true
|
|
|
+ }else {
|
|
|
+ //付费
|
|
|
+ that.could_play = false
|
|
|
+ uni.showModal({
|
|
|
+ title:'提示',
|
|
|
+ content:'您未完成信息认证,是否立即认证?',
|
|
|
+ complete(e) {
|
|
|
+
|
|
|
+ if(e.confirm) {
|
|
|
+ if (that.user.work_type_id <=0) {
|
|
|
+ that.navTo('/pages/user/model/modelrz?modelid='+that.user.show_template_id)
|
|
|
+ } else {
|
|
|
+ if (that.user.show_template_id) {
|
|
|
+ that.navTo('/pages/user/model/model?mtype=' + that.user.show_template_id+'&type=3')
|
|
|
+ }else{
|
|
|
+ uni.showModal({
|
|
|
+ title: '错误',
|
|
|
+ content: '您未购买模板请先购买',
|
|
|
+ showCancel: false,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }).catch((e) => {
|
|
|
+ console.log(e, 'sj');
|
|
|
+ })
|
|
|
+ },
|
|
|
+ bq(url) {
|
|
|
+ if(url.indexOf('http') == -1) {
|
|
|
+ url = 'https://myj.liuniu946.com' + url
|
|
|
+ }
|
|
|
+ return url
|
|
|
+ },
|
|
|
+ choose(item) {
|
|
|
+ console.log(item,'item');
|
|
|
+ this.choosId = item.course_id
|
|
|
+ this.chooseCourse = item
|
|
|
+ this.currentIndex = 0
|
|
|
+ },
|
|
|
+ getrecommendList() {
|
|
|
+ recommend().then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.recommendList = res.data.recommendList.slice(0,3)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ getCourseList() {
|
|
|
+ let that = this
|
|
|
+ getCourseList({
|
|
|
+ gr_id: that.id
|
|
|
+ }).then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.courseList = res.data.map(item => {
|
|
|
+ // item.course_sp = (item.course_sp.indexOf('http') == -1 )? ('http://qiniuyun.deepbytop.com' + item.course_sp ): item.course_sp
|
|
|
+ item.course_sp = item.course_sp.replace(/http:/g,'https:')
|
|
|
+ item.course_intro = item.course_intro.replace(/img src="/g,'img class="rich-img" src="https://myj.liuniu946.com')
|
|
|
+ return item
|
|
|
+ })
|
|
|
+ this.chooseCourse = this.courseList[0]
|
|
|
+ this.topimg = (this.chooseCourse.course_cover.indexOf('http') == -1 ? ('https://myj.liuniu946.com' + this.chooseCourse.course_cover): this.chooseCourse.course_cover)
|
|
|
+ console.log(this.chooseCourse.course_sp);
|
|
|
+ this.getUser()
|
|
|
+ })
|
|
|
+ },
|
|
|
navClick(index) {
|
|
|
this.currentIndex = index
|
|
|
}
|
|
@@ -354,4 +506,7 @@
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+ /deep/ .rich-img {
|
|
|
+ width: 100% !important;
|
|
|
+ }
|
|
|
</style>
|