|
@@ -21,12 +21,14 @@
|
|
|
<view class="grid-box">
|
|
|
<view class="grid-group">
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/miaosha.png" mode="aspectFit" @click="menusTap('共富1580', 8)">
|
|
|
+ <image src="../../../static/menus/miaosha.png" mode="aspectFit"
|
|
|
+ @click="menusTap('共富1580', 8)">
|
|
|
</image>
|
|
|
<text>共富1580</text>
|
|
|
</view>
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/hongbao.png" mode="aspectFit" @click="menusTap('红包商城', 3)">
|
|
|
+ <image src="../../../static/menus/hongbao.png" mode="aspectFit"
|
|
|
+ @click="menusTap('红包商城', 3)">
|
|
|
</image>
|
|
|
<text>红包商城</text>
|
|
|
</view>
|
|
@@ -36,12 +38,14 @@
|
|
|
<text>积分专区</text>
|
|
|
</view>
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/chuangke.png" mode="aspectFit" @click="menusTap('创客专区', 4)">
|
|
|
+ <image src="../../../static/menus/chuangke.png" mode="aspectFit"
|
|
|
+ @click="menusTap('创客专区', 4)">
|
|
|
</image>
|
|
|
<text>创客专区</text>
|
|
|
</view>
|
|
|
<view class="grid-item">
|
|
|
- <image src="../../../static/menus/chengshihehuoren.png" mode="aspectFit" @click="menusTap('城市合伙人', 5)">
|
|
|
+ <image src="../../../static/menus/chengshihehuoren.png" mode="aspectFit"
|
|
|
+ @click="menusTap('城市合伙人', 5)">
|
|
|
</image>
|
|
|
<text>城市合伙人</text>
|
|
|
</view>
|
|
@@ -108,7 +112,8 @@
|
|
|
<view class="tab-content" v-show="current >= 1">
|
|
|
<!-- 轮播 -->
|
|
|
<view class="swiper-group">
|
|
|
- <u-swiper :list="swiperTabList.length == 0?swiperList:swiperTabList" indicator indicatorMode="line" circular></u-swiper>
|
|
|
+ <u-swiper :list="swiperTabList.length == 0 ? swiperList : swiperTabList" indicator
|
|
|
+ indicatorMode="line" circular></u-swiper>
|
|
|
</view>
|
|
|
<!-- 商品列表 -->
|
|
|
<goodListMall @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
|
|
@@ -127,7 +132,10 @@ import {
|
|
|
import {
|
|
|
mapGetters
|
|
|
} from "vuex";
|
|
|
-import { getAdsList, getNoticeList, getCategoryOne, getGoodsPage, getIndexData, getGoodsInfo } from '../../../api/home.js'
|
|
|
+import {
|
|
|
+ getAdsList, getNoticeList, getCategoryOne,
|
|
|
+ getGoodsPage, getIndexData, getGoodsInfo
|
|
|
+} from '../../../api/home.js'
|
|
|
import {
|
|
|
goShopDetail
|
|
|
} from '@/libs/order.js';
|
|
@@ -142,6 +150,11 @@ export default {
|
|
|
noticeShow: false,
|
|
|
noticeContent: '',
|
|
|
tempArr: [],
|
|
|
+ where: {
|
|
|
+ zoneType: 8,
|
|
|
+ current: 1,
|
|
|
+ size: 20,
|
|
|
+ },
|
|
|
tempArrBao: [
|
|
|
{
|
|
|
"id": 72,
|
|
@@ -706,15 +719,15 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- pullResh(){
|
|
|
- if(this.current == 0){
|
|
|
+ pullResh() {
|
|
|
+ if (this.current == 0) {
|
|
|
uni.showLoading({ title: '刷新中' });
|
|
|
this.getNoticeList()
|
|
|
this.getAdsList()
|
|
|
this.getBroGoodsInfo()
|
|
|
this.getAdsTabList()
|
|
|
this.getGoodsInfo()
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.$refs.goodTablist.getGoodsPage()
|
|
|
}
|
|
|
},
|
|
@@ -750,15 +763,36 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
menusTap(url, zoneType) {
|
|
|
+ let that = this
|
|
|
// #ifdef H5
|
|
|
location.href = url
|
|
|
// #endif
|
|
|
// #ifdef MP || APP-PLUS
|
|
|
- uni.navigateTo({
|
|
|
- url: "/pages/goods/goods_list_mall/index?zoneType=" + zoneType + "&title=" + url
|
|
|
- });
|
|
|
+ if (zoneType == 8) {
|
|
|
+ //共富取消中间过渡界面
|
|
|
+ getGoodsInfo(that.where).then(res => {
|
|
|
+ let list = res.data;
|
|
|
+ if (that.where.zoneType == 8 && list.length == 1) {
|
|
|
+ // 自动跳转共富1580商品详情
|
|
|
+ that.godDetail(list[0])
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/pages/goods/goods_list_mall/index?zoneType=" + zoneType + "&title=" + url
|
|
|
+ });
|
|
|
+ }
|
|
|
// #endif
|
|
|
},
|
|
|
+ // 去详情页
|
|
|
+ godDetail(item) {
|
|
|
+ goShopDetail(item, this.uid).then(res => {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/goods_details/index?id=${item.id}`
|
|
|
+ + "&zoneType=" + item.zoneType
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
noticeClose() {
|
|
|
this.noticeShow = false
|
|
|
},
|