|
@@ -71,9 +71,10 @@
|
|
|
@click="goDetail(item)">
|
|
|
<image :src="item.goodsCover" mode="aspectFit"></image>
|
|
|
<view class="goods-name">
|
|
|
- <u-text prefixIcon="bookmark" iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold
|
|
|
- block size="12" :text="item.goodsName"></u-text>
|
|
|
- <view class="tags">赠送{{item.obtainIntegral}}红积分</view>
|
|
|
+ <u-text prefixIcon="bookmark"
|
|
|
+ iconStyle="font-size: 16px; color:red;min-height: 30px;" :lines="2" bold block
|
|
|
+ size="12" :text="item.goodsName"></u-text>
|
|
|
+ <view class="tags">赠送{{ item.obtainIntegral }}红积分</view>
|
|
|
<view class="price">¥{{ item.salePrice }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -96,7 +97,7 @@
|
|
|
<view class="tab-content" v-show="current >= 1">
|
|
|
<!-- 轮播 -->
|
|
|
<view class="swiper-group">
|
|
|
- <u-swiper :list="swiperList" indicator indicatorMode="line" circular></u-swiper>
|
|
|
+ <u-swiper :list="swiperTabList" indicator indicatorMode="line" circular></u-swiper>
|
|
|
</view>
|
|
|
<!-- 商品列表 -->
|
|
|
<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
|
|
@@ -638,6 +639,11 @@ export default {
|
|
|
'洛阳亲友如相问',
|
|
|
'一片冰心在玉壶'
|
|
|
],
|
|
|
+ swiperTabList: [
|
|
|
+ '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: [
|
|
|
'https://cdn.uviewui.com/uview/swiper/swiper3.png',
|
|
|
'https://cdn.uviewui.com/uview/swiper/swiper2.png',
|
|
@@ -655,7 +661,7 @@ export default {
|
|
|
this.getNoticeList()
|
|
|
this.getBroGoodsInfo()
|
|
|
this.getGoodsInfo()
|
|
|
-
|
|
|
+ this.getAdsTabList()
|
|
|
},
|
|
|
onLoad() {
|
|
|
},
|
|
@@ -717,7 +723,7 @@ export default {
|
|
|
},
|
|
|
getAdsList() {
|
|
|
getAdsList({
|
|
|
- type: 2
|
|
|
+ type: 1
|
|
|
}).then(res => {
|
|
|
if (res.data.length > 0) {
|
|
|
this.swiperList = []
|
|
@@ -727,6 +733,18 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ getAdsTabList() {
|
|
|
+ getAdsList({
|
|
|
+ type: 7
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.length > 0) {
|
|
|
+ this.swiperTabList = []
|
|
|
+ res.data.forEach(element => {
|
|
|
+ this.swiperTabList.push(element.imageUrl)
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
// 促销列表的点击事件;
|
|
|
changeTab(type) {
|
|
|
this.goodType = type;
|