|
@@ -5,24 +5,21 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view >
|
|
<view >
|
|
|
<view v-show="current === 0">
|
|
<view v-show="current === 0">
|
|
|
- <view class="content" v-for="(item,index) in list1" :key="index">
|
|
|
|
|
|
|
+ <view class="content" v-for="(item,index) in list1" :key="index" @click="jumpDetail(item)">
|
|
|
<view class="c_t1">
|
|
<view class="c_t1">
|
|
|
- 2021年5月1日
|
|
|
|
|
|
|
+ {{$method.timestampToTime(item.createTime)}}
|
|
|
</view>
|
|
</view>
|
|
|
<view>
|
|
<view>
|
|
|
<u-row >
|
|
<u-row >
|
|
|
<u-col span="5" >
|
|
<u-col span="5" >
|
|
|
<view style="padding: 5rpx;">
|
|
<view style="padding: 5rpx;">
|
|
|
- <image src="/static/banner.png" class="c_img"></image>
|
|
|
|
|
|
|
+ <image :src="$method.splitImgHost(item.coverUrl)" class="c_img"></image>
|
|
|
</view>
|
|
</view>
|
|
|
</u-col>
|
|
</u-col>
|
|
|
<u-col span="7" >
|
|
<u-col span="7" >
|
|
|
<view style="position: relative;height: 134rpx;padding-left: 10rpx;">
|
|
<view style="position: relative;height: 134rpx;padding-left: 10rpx;">
|
|
|
<view class="c_title">
|
|
<view class="c_title">
|
|
|
- 二级建造师市政公用工程
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="c_log">
|
|
|
|
|
- 上次看到 2.1 二级建造师章节标题
|
|
|
|
|
|
|
+ {{item.courseName}}
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</u-col>
|
|
</u-col>
|
|
@@ -37,6 +34,7 @@
|
|
|
<view v-show="current === 2">
|
|
<view v-show="current === 2">
|
|
|
选项卡3的内容
|
|
选项卡3的内容
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <view v-if="paramList[current].showStatus" style="text-align: center;margin-top: 24rpx;">到底啦~</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
@@ -82,6 +80,26 @@
|
|
|
onShow(){
|
|
onShow(){
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ jumpDetail(item) {
|
|
|
|
|
+ if (this.current == 0) {
|
|
|
|
|
+ this.$navTo.togo('/pages2/course/detail', {
|
|
|
|
|
+ id: item.courseId
|
|
|
|
|
+ });
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.current == 1) {
|
|
|
|
|
+ this.$navTo.togo('/pages2/bank/detail', {
|
|
|
|
|
+ id: item.bankId
|
|
|
|
|
+ });
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.current == 2) {
|
|
|
|
|
+ this.$navTo.togo('/pages2/course/keynote', {
|
|
|
|
|
+ id: item.fileId
|
|
|
|
|
+ });
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
initList() {
|
|
initList() {
|
|
|
this.courseList();
|
|
this.courseList();
|
|
|
this.bankList();
|
|
this.bankList();
|