|
@@ -63,12 +63,12 @@
|
|
|
</u-swiper>
|
|
|
</u-panel>
|
|
|
<u-panel title="推荐展商" link="/pages/exhibitor/index">
|
|
|
- <u-swiper :items="exhibitorList" useComponentName="logoSwiper" image-mode="aspectFit" key="logoSwiper" :autoplay="false" :height="getPartHeight(exhibitorList)">
|
|
|
+ <u-swiper :items="part3" useComponentName="logoSwiper" image-mode="aspectFit" key="logoSwiper" :autoplay="false" :height="getPartHeight(part3)">
|
|
|
<template v-slot="{ scope }">
|
|
|
<view class="partners">
|
|
|
<template v-for="(item, index) in scope">
|
|
|
<view class="partner" :key="index" @tap="onLogoClick(item)">
|
|
|
- <image mode="aspectFit" :src="item.logo" />
|
|
|
+ <image mode="aspectFit" :src="item.url" />
|
|
|
</view>
|
|
|
</template>
|
|
|
</view>
|
|
@@ -259,6 +259,8 @@
|
|
|
this.albumPics = res.data.module3.image
|
|
|
this.part1 = res.data.module4.part1.logo
|
|
|
this.part2 = res.data.module4.part2.logo
|
|
|
+ this.part3 = res.data.module4.part3.logo
|
|
|
+ console.log(res.data);
|
|
|
})
|
|
|
},
|
|
|
getExhibitorsList() {
|