|
@@ -4,8 +4,6 @@
|
|
|
<!-- 拼团列表 -->
|
|
|
|
|
|
<view class="list-box animated" v-for="(e, index) in grouponData" :key="index">
|
|
|
-
|
|
|
-
|
|
|
<productConSwiperGroupbuying class="skeleton-rect" :imgUrls="e.slideshow" :videoline="e.video_link"
|
|
|
@videoPause="videoPause"></productConSwiperGroupbuying>
|
|
|
|
|
@@ -45,9 +43,10 @@
|
|
|
</block>
|
|
|
|
|
|
<text class="red">{{ e.grouponUserTotal }}人</text>
|
|
|
- <text class="yellow">正在参团中</text>
|
|
|
+ <text class="yellow" v-if="currentId == 0">正在参团中</text>
|
|
|
+ <text class="yellow" v-if="currentId == 1">已参团</text>
|
|
|
</view>
|
|
|
- <view class="countdown-r">
|
|
|
+ <view class="countdown-r" v-if="currentId == 0">
|
|
|
<image src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
|
|
|
<text class="yellow">截止倒计时</text>
|
|
|
<!-- <text class="red2">02时25分19秒</text> -->
|
|
@@ -84,7 +83,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="btn-area">
|
|
|
+ <view class="btn-area" v-if="currentId == 0">
|
|
|
<button class="share">
|
|
|
<image src="http://www.gzzzyd.com/groupon/home_slices/分享@2x.png" mode="scaleToFill" />
|
|
|
<text>分享有礼</text>
|
|
@@ -94,14 +93,16 @@
|
|
|
<text>立即下单</text>
|
|
|
</button>
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
+
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+const app = getApp();
|
|
|
import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
|
|
|
import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '@/api/groupon.js'
|
|
|
+
|
|
|
export default {
|
|
|
components: {
|
|
|
productConSwiperGroupbuying
|
|
@@ -156,9 +157,14 @@ export default {
|
|
|
labelColor: "rgba(29,176,252,1)",
|
|
|
typeId: '',
|
|
|
grouponData: [],
|
|
|
+ loading: false, //是否加载中
|
|
|
+ loadend: false, //是否加载完毕
|
|
|
+ loadTitle: this.$t(`加载更多`), //提示语
|
|
|
};
|
|
|
},
|
|
|
created () {
|
|
|
+ console.log("created...")
|
|
|
+ this.grouponData = [];
|
|
|
this.onLoadData(this.currentId);
|
|
|
},
|
|
|
methods: {
|
|
@@ -180,7 +186,6 @@ export default {
|
|
|
getLatestGroupon() {
|
|
|
let longitude = uni.getStorageSync('user_longitude');
|
|
|
let latitude = uni.getStorageSync('user_latitude');
|
|
|
- console.log("+++++++++++++++++++++++++++")
|
|
|
let that = this;
|
|
|
latestGroupon({
|
|
|
current: 1,
|
|
@@ -201,7 +206,6 @@ export default {
|
|
|
longitude: longitude,
|
|
|
latitude: latitude
|
|
|
}).then(res => {
|
|
|
-
|
|
|
that.grouponData = res.data.records;
|
|
|
})
|
|
|
},
|