Commit d5796b54 authored by Facius's avatar Facius

视频教学大纲

parent 7f521e97
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
{ {
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "首页" "navigationBarTitleText": "首页",
"navigationStyle": "custom"
} }
}, },
{ {
......
This diff is collapsed.
...@@ -12,11 +12,10 @@ ...@@ -12,11 +12,10 @@
</view> </view>
<view>接单操作须知有助你快速了解充电桩安装业务,提高接单效率,请认真查看及学习。</view> <view>接单操作须知有助你快速了解充电桩安装业务,提高接单效率,请认真查看及学习。</view>
</view> </view>
<view class="learn-view"> <view class="learn-view" v-if="currentIndex >= 0">
<view class="learn-view-title">内容大纲</view> <view class="learn-view-title">视频内容介绍</view>
<view class="learn-list" v-for="(item, key) in courseOutline" :key="key"> <view class="learn-list" v-for="(item, key) in courseOutlines[currentIndex]" :key="key">
<view class="learn-list-item">{{item}}</view> <view class="learn-list-item">{{item}}</view>
<view class="line-view"></view>
</view> </view>
</view> </view>
</view> </view>
...@@ -33,8 +32,38 @@ ...@@ -33,8 +32,38 @@
courseSrc: '', courseSrc: '',
courseTitle: '', courseTitle: '',
courseDesc: '', courseDesc: '',
courseOutline: ['1 aaa', '2 bbb'] // 视频大纲 currentIndex: -1 // 第几个视频
}; };
},
computed: {
courseOutlines() {
return [[
'1、考核规则:接单及时率',
'2、考核规则:上门及时率',
'3、考核规则:安装完工率',
'4、考核规则:资料提交及时率',
'5、考核规则:安装完工率',
'6、考核规则:客户满意度'
],
[
'1、必备材料4大类',
'2、施工工具准备'
],
[
'1、接线安装工艺标准',
'2、PVC、镀锌管电缆管明敷',
'3、电缆敷设的防火要求',
'4、电源点标识',
'5、配电箱接线及安装',
'6、管线敷设接头处理',
'7、充电桩内部接线',
'8、配电箱安装'
],
[
'1、勘测环节录单要求',
'2、安装环节录单要求'
]]
}
}, },
onLoad(e) { onLoad(e) {
if (e) { if (e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment