|
@@ -70,7 +70,7 @@
|
|
|
<text class="titles">我的课程</text>
|
|
|
|
|
|
<view v-for="(item, index) in courseLists" :key="index" class="course_item">
|
|
|
- <view>
|
|
|
+ <view @click="studyIn(item.goodsId,item.gradeId,item,index)">
|
|
|
<view class="cou_titles">{{ item.goodsName }}</view>
|
|
|
<view v-if="item.serviceStartTime && item.serviceEndTime" class="learn_ranges">
|
|
|
<image class="l_range" src="/static/learn/learn_range.png"></image>
|
|
@@ -78,7 +78,7 @@
|
|
|
<text class="l_time">{{ item.serviceStartTime | formate('yyyy.mm.dd') }} - {{ item.serviceEndTime | formate('yyyy.mm.dd') }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="c_downs">
|
|
|
+ <view class="c_downs" @click="studyIn(item.goodsId,item.gradeId,item,index)">
|
|
|
<view class="lefts">
|
|
|
<image class="lefet_img" :src="$method.splitImgHost(item.coverUrl, true)" mode=""></image>
|
|
|
<view v-if="item.goodsType == 6" class="live_icon">直播</view>
|
|
@@ -1038,6 +1038,7 @@ export default {
|
|
|
this.appointTestShow = false
|
|
|
},
|
|
|
appointment(item, appoint) {
|
|
|
+ console.log('====', item,appoint, item.examApplyGoodsList)
|
|
|
this.appointItemIndex = item
|
|
|
if (item.examApplyGoodsList.length > 1) { // 多个考试预约
|
|
|
this.appointTestList = item.examApplyGoodsList
|