|
@@ -96,7 +96,7 @@
|
|
|
<u-empty margin-top="150" text="暂无课程" mode="data"></u-empty>
|
|
<u-empty margin-top="150" text="暂无课程" mode="data"></u-empty>
|
|
|
</view>
|
|
</view>
|
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list1" :key="index">
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list1" :key="index">
|
|
|
- <image :src="$method.splitImgHost(item.coverUrl)" class="list_img"></image>
|
|
|
|
|
|
|
+ <image :src="$method.splitImgHost(item.coverUrl,true)" class="list_img"></image>
|
|
|
<view class="list_content">
|
|
<view class="list_content">
|
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
|
<view class="list_title">{{ item.courseName }}</view>
|
|
<view class="list_title">{{ item.courseName }}</view>
|
|
@@ -114,7 +114,7 @@
|
|
|
<u-empty margin-top="150" text="暂无题库" mode="data"></u-empty>
|
|
<u-empty margin-top="150" text="暂无题库" mode="data"></u-empty>
|
|
|
</view>
|
|
</view>
|
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list2" :key="index">
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list2" :key="index">
|
|
|
- <image :src="$method.splitImgHost(item.coverUrl)" class="list_img"></image>
|
|
|
|
|
|
|
+ <image :src="$method.splitImgHost(item.coverUrl,true)" class="list_img"></image>
|
|
|
<view class="list_content">
|
|
<view class="list_content">
|
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
|
<view class="list_title">{{ item.bankName }}</view>
|
|
<view class="list_title">{{ item.bankName }}</view>
|
|
@@ -132,7 +132,7 @@
|
|
|
<u-empty margin-top="150" text="暂无重点考点" mode="data"></u-empty>
|
|
<u-empty margin-top="150" text="暂无重点考点" mode="data"></u-empty>
|
|
|
</view>
|
|
</view>
|
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list3" :key="index">
|
|
<view v-else @click="jumpDetail(item)" class="list_box" v-for="(item, index) in list3" :key="index">
|
|
|
- <image :src="$method.splitImgHost(item.coverUrl)" class="list_img"></image>
|
|
|
|
|
|
|
+ <image :src="$method.splitImgHost(item.coverUrl,true)" class="list_img"></image>
|
|
|
<view class="list_content">
|
|
<view class="list_content">
|
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
<view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
|
<view class="list_title">{{ item.name }}</view>
|
|
<view class="list_title">{{ item.name }}</view>
|
|
@@ -364,7 +364,7 @@ export default {
|
|
|
this.$api.advertisingList().then(res => {
|
|
this.$api.advertisingList().then(res => {
|
|
|
let index;
|
|
let index;
|
|
|
for (index in res.data.rows) {
|
|
for (index in res.data.rows) {
|
|
|
- res.data.rows[index].image = self.$method.splitImgHost(res.data.rows[index].adverUrl);
|
|
|
|
|
|
|
+ res.data.rows[index].image = self.$method.splitImgHost(res.data.rows[index].adverUrl,true,500);
|
|
|
}
|
|
}
|
|
|
self.list = res.data.rows.filter((item,index) => {
|
|
self.list = res.data.rows.filter((item,index) => {
|
|
|
return item.type === 1
|
|
return item.type === 1
|