|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <view>
|
|
|
+ <view v-if="storeInfo.id">
|
|
|
<skeleton :show="showSkeleton" :isNodes="isNodes" ref="skeleton" loading="chiaroscuro" selector="skeleton"
|
|
|
bgcolor="#FFF"></skeleton>
|
|
|
|
|
@@ -268,7 +268,7 @@
|
|
|
<text class="lookGoodsText">查看商品</text>
|
|
|
</view>
|
|
|
<view class="lookGoodsNumberView">
|
|
|
- <text class="lookGoodsNumber">{{storeInfo.goodsList.length}}</text>
|
|
|
+ <text v-if="storeInfo.goodsList" class="lookGoodsNumber">{{storeInfo.goodsList.length}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -279,20 +279,11 @@
|
|
|
let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
|
|
let windWidth = uni.getSystemInfoSync().windowWidth
|
|
|
import {detailGroupon, goodsDetail,bindParentId} from '@/api/groupon.js'
|
|
|
-import {
|
|
|
-postBeforeCheck
|
|
|
-} from "@/api/home.js";
|
|
|
|
|
|
import {
|
|
|
getUserInfo,
|
|
|
} from "@/api/user.js";
|
|
|
|
|
|
-import {
|
|
|
- getCartCounts
|
|
|
-} from "@/api/order.js";
|
|
|
-import {
|
|
|
- toLogin
|
|
|
-} from "@/libs/login.js";
|
|
|
import {
|
|
|
mapGetters
|
|
|
} from "vuex";
|
|
@@ -463,14 +454,14 @@ export default {
|
|
|
watch: {
|
|
|
isLogin: {
|
|
|
handler: function (newV, oldV) {
|
|
|
- if (newV == true) {
|
|
|
- uni.navigateTo({
|
|
|
- url: "/pages/goods_details/index?id="
|
|
|
- + this.$Cache.get('GOOD_ID_LOGIN')
|
|
|
- + "&inviteCode=" + this.$Cache.get('INVITE_CODE_LOGIN')
|
|
|
- + "&zoneType=" + 8
|
|
|
- })
|
|
|
- }
|
|
|
+ // if (newV == true) {
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: "/pages/goods_details/index?id="
|
|
|
+ // + this.$Cache.get('GOOD_ID_LOGIN')
|
|
|
+ // + "&inviteCode=" + this.$Cache.get('INVITE_CODE_LOGIN')
|
|
|
+ // + "&zoneType=" + 8
|
|
|
+ // })
|
|
|
+ // }
|
|
|
},
|
|
|
deep: true,
|
|
|
},
|
|
@@ -530,11 +521,11 @@ export default {
|
|
|
})
|
|
|
}, 1500);
|
|
|
} else {
|
|
|
- uni.showLoading({
|
|
|
- title: '加载中...'
|
|
|
- });
|
|
|
+ // uni.showLoading({
|
|
|
+ // title: '加载中...'
|
|
|
+ // });
|
|
|
this.getGrouponDetail(options.id);
|
|
|
- setTimeout(()=>{
|
|
|
+ // setTimeout(()=>{
|
|
|
|
|
|
|
|
|
console.log("受邀的推荐码:" + options.inviteCode);
|
|
@@ -586,9 +577,9 @@ export default {
|
|
|
//记录推广人uid
|
|
|
if (options.spid) app.globalData.spid = options.spid;
|
|
|
// #endif
|
|
|
- uni.hideLoading();
|
|
|
+ // uni.hideLoading();
|
|
|
|
|
|
- },500)
|
|
|
+ // },500)
|
|
|
}
|
|
|
|
|
|
},
|
|
@@ -911,16 +902,22 @@ export default {
|
|
|
},
|
|
|
|
|
|
getGrouponDetail(id) {
|
|
|
+ uni.showLoading({
|
|
|
+ title: '加载中...'
|
|
|
+ });
|
|
|
let that = this;
|
|
|
detailGroupon({grouponId: id}).then((res) => {
|
|
|
- that.storeInfo = res.data
|
|
|
- this.isShowBottom = this.getIsShowBottom(res.data.grouponEndTime)
|
|
|
- if (this.isShowBottom ){
|
|
|
- this.bottomHeight = '150rpx'
|
|
|
- }
|
|
|
- setTimeout(() =>{
|
|
|
- this.getFirstGoodsTop(res.data.goodsList[0].id);
|
|
|
- },2000)
|
|
|
+ uni.hideLoading();
|
|
|
+ that.storeInfo = res.data;
|
|
|
+ this.isShowBottom = this.getIsShowBottom(res.data.grouponEndTime)
|
|
|
+ if (this.isShowBottom) {
|
|
|
+ this.bottomHeight = '150rpx'
|
|
|
+ }
|
|
|
+ setTimeout(() => {
|
|
|
+ this.getFirstGoodsTop(res.data.goodsList[0].id);
|
|
|
+ }, 2000)
|
|
|
+ }).catch(err => {
|
|
|
+ uni.hideLoading();
|
|
|
})
|
|
|
},
|
|
|
|
|
@@ -1053,6 +1050,7 @@ export default {
|
|
|
title: '请选择商品',
|
|
|
icon: 'none'
|
|
|
});
|
|
|
+ this.toGoods1(this.storeInfo.goodsList[0].id)
|
|
|
return;
|
|
|
}
|
|
|
uni.navigateTo({
|