|
@@ -5,26 +5,22 @@
|
|
<text class="nav-bar-title">{{title}}</text>
|
|
<text class="nav-bar-title">{{title}}</text>
|
|
</view>
|
|
</view>
|
|
<!-- 播放器 -->
|
|
<!-- 播放器 -->
|
|
- <videoPlayVue ref="videoRef"></videoPlayVue>
|
|
|
|
|
|
+ <videoPlayVue ref="videoRef" class="phone-video-box"></videoPlayVue>
|
|
<!-- 中间区域 -->
|
|
<!-- 中间区域 -->
|
|
- <view>
|
|
|
|
- <view>{{period}}分钟</view>
|
|
|
|
|
|
+ <view class="kc-info-box">
|
|
|
|
+ <view>时长:{{period}}分钟</view>
|
|
<view>{{userCount}}人学习</view>
|
|
<view>{{userCount}}人学习</view>
|
|
</view>
|
|
</view>
|
|
<!-- 大纲 -->
|
|
<!-- 大纲 -->
|
|
- <view class="uni-padding-wrap uni-common-mt">
|
|
|
|
|
|
+ <view class="phone-tab-box">
|
|
<uni-segmented-control :current="current" :values="items" style-type="text" :active-color="activeColor"
|
|
<uni-segmented-control :current="current" :values="items" style-type="text" :active-color="activeColor"
|
|
@clickItem="onClickItem" />
|
|
@clickItem="onClickItem" />
|
|
</view>
|
|
</view>
|
|
- <view class="content">
|
|
|
|
|
|
+ <view class="kecheng-content-box">
|
|
<!-- 目录 -->
|
|
<!-- 目录 -->
|
|
- <view v-if="current === 0">
|
|
|
|
- <kechengMuluVue :chapterArr="list" @play="handlePlay" :isHasProgress="false"></kechengMuluVue>
|
|
|
|
- </view>
|
|
|
|
|
|
+ <kechengMuluVue v-if="current === 0" :chapterArr="list" @play="handlePlay" :isHasProgress="false"></kechengMuluVue>
|
|
<!-- 介绍 -->
|
|
<!-- 介绍 -->
|
|
- <view v-if="current === 1 && intro">
|
|
|
|
- <rich-text :nodes="intro"></rich-text>
|
|
|
|
- </view>
|
|
|
|
|
|
+ <rich-text :nodes="intro" v-if="current === 1 && intro" class="kecheng-jieshao-box"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
@@ -49,7 +45,7 @@
|
|
return {
|
|
return {
|
|
items: ['目录', '介绍'],
|
|
items: ['目录', '介绍'],
|
|
colors: ['#007aff', '#4cd964', '#dd524d'],
|
|
colors: ['#007aff', '#4cd964', '#dd524d'],
|
|
- activeColor: '#007aff',
|
|
|
|
|
|
+ activeColor: '#3fd2a1',
|
|
current: 0, // 激活的选项卡
|
|
current: 0, // 激活的选项卡
|
|
kcId: '', // 课程
|
|
kcId: '', // 课程
|
|
title: '',
|
|
title: '',
|