|
@@ -30,15 +30,13 @@
|
|
|
|
|
|
<!-- 轮播 -->
|
|
|
<view class="swiper-group">
|
|
|
- <u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="false">
|
|
|
+ <u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="false" keyName="imageUrl" @click="clickImageUrl">
|
|
|
<view slot="indicator" class="indicator">
|
|
|
<view class="indicator__dot" v-for="(item, index) in swiperList" :key="index"
|
|
|
:class="[index === current && 'indicator__dot--active']">
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-swiper>
|
|
|
-
|
|
|
-
|
|
|
</view>
|
|
|
|
|
|
<view class="header-group">
|
|
@@ -155,11 +153,7 @@ export default {
|
|
|
'洛阳亲友如相问',
|
|
|
'一片冰心在玉壶'
|
|
|
],
|
|
|
- swiperList: [
|
|
|
- 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
|
|
|
- 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
|
|
|
- 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
|
|
|
- ],
|
|
|
+ swiperList: [],
|
|
|
navigationList: [{
|
|
|
title: '最新团购',
|
|
|
id: '0'
|
|
@@ -212,6 +206,25 @@ export default {
|
|
|
// }
|
|
|
},
|
|
|
methods: {
|
|
|
+
|
|
|
+ clickImageUrl(e){
|
|
|
+ console.log(e)
|
|
|
+
|
|
|
+ let item =this.swiperList[e]
|
|
|
+
|
|
|
+ console.log(item)
|
|
|
+ if (item.skipType === 2){//跳转到文章链接
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/groupbuying/article/article?id='+item.dataId
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if (item.skipType === 3){ //跳转到团购详情链接
|
|
|
+ uni.navigateTo({
|
|
|
+ url: item.targetUrl
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
swiperChange(e) {
|
|
|
this.tabIndex = e.detail.current
|
|
|
},
|
|
@@ -353,9 +366,10 @@ export default {
|
|
|
}).then(res => {
|
|
|
if (res.data.length > 0) {
|
|
|
that.swiperList = []
|
|
|
- res.data.forEach(element => {
|
|
|
- that.swiperList.push(element.imageUrl)
|
|
|
- });
|
|
|
+ that.swiperList = res.data
|
|
|
+ // res.data.forEach(element => {
|
|
|
+ // that.swiperList.push(element.imageUrl)
|
|
|
+ // });
|
|
|
}
|
|
|
});
|
|
|
},
|