Browse Source

修改拼团列表分页无法使用的问题

master
Gao xiaosong 5 years ago
parent
commit
3cb20117b0
  1. 98
      pages/activity/GoodsGroup/index.vue
  2. 2
      pages/shop/Live/LiveList/index.vue

98
pages/activity/GoodsGroup/index.vue

@ -9,14 +9,8 @@
</view> </view>
<view class="group-box"> <view class="group-box">
<view class="goods-item" v-for="(groupon, index) in grouponList" :key="groupon.id"> <view class="goods-item" v-for="(groupon, index) in grouponList" :key="groupon.id">
<activity-card <activity-card :cId="groupon.id" :title="groupon.title" :info="groupon.info" :img="groupon.image"
:cId="groupon.id" :price="groupon.price" :productPrice="groupon.productPrice">
:title="groupon.title"
:info="groupon.info"
:img="groupon.image"
:price="groupon.price"
:productPrice="groupon.productPrice"
>
<block slot="tag"> <block slot="tag">
<view class="tag" v-if="index < 3">TOP{{ index + 1 }}</view> <view class="tag" v-if="index < 3">TOP{{ index + 1 }}</view>
</block> </block>
@ -29,30 +23,30 @@
<text class="group-num">{{ groupon.people || 0 }}人团</text> <text class="group-num">{{ groupon.people || 0 }}人团</text>
</view> </view>
</block> </block>
<block slot="btn"><button class="cu-btn buy-btn" @tap.stop="jump('/pages/activity/GroupDetails/index', { id: groupon.id })">马上拼</button></block> <block slot="btn"><button class="cu-btn buy-btn"
@tap.stop="jump('/pages/activity/GroupDetails/index', { id: groupon.id })">马上拼</button></block>
</activity-card> </activity-card>
</view> </view>
</view> </view>
</view> </view>
<!-- 空白 -->
<!-- <Shop-empty v-if="!grouponList.length && !isLoading" :emptyData="emptyData"></Shop-empty>-->
<!-- 加载更多 -->
<view v-if="grouponList.length" class="cu-load text-gray" :class="loadStatus"></view>
<!-- loading -->
<Shop-load v-model="isLoading"></Shop-load>
</scroll-view> </scroll-view>
</view> </view>
<!-- 自定义底部导航 --> <Loading :loaded="loaded" :loading="loading"></Loading>
<Shop-tabbar></Shop-tabbar>
</view> </view>
</template> </template>
<script> <script>
import activityCard from './children/activity-card.vue'; import activityCard from './children/activity-card.vue';
import { getCombinationList } from "@/api/activity"; import Loading from "@/components/Loading";
export default {
import {
getCombinationList
} from "@/api/activity";
export default {
components: { components: {
activityCard activityCard,
Loading
}, },
data() { data() {
return { return {
@ -62,11 +56,11 @@ export default {
path: '/pages/index/index', path: '/pages/index/index',
pathText: '去首页逛逛' pathText: '去首页逛逛'
}, },
status:'', loaded: false,
isLoading: true, loading: false,
loadStatus: '', //loading,over
lastPage: 0, lastPage: 0,
currentPage: 1, currentPage: 1,
limit: 10,
grouponList: [] grouponList: []
}; };
}, },
@ -85,26 +79,21 @@ export default {
}, },
// //
loadMore() { loadMore() {
if (this.currentPage < this.lastPage) {
this.currentPage += 1;
this.getGrouponList();
}
}, },
// //
getGrouponList() { getGrouponList() {
let that = this; let that = this;
that.isLoading = true; if (this.loading || this.loaded) return;
that.loadStatus = 'loading'; this.loading = true;
getCombinationList({ page:that.currentPage, limit: 10 }).then(res => { getCombinationList({
that.status = res.data.length < 10; page: that.currentPage,
that.grouponList.push.apply(that.grouponList, res.data); limit: this.limit
that.lastPage = res.data.last_page; }).then(res => {
if (that.currentPage < res.data.last_page) { that.grouponList = that.grouponList.concat(res.data.storeCombinationQueryVos)
that.loadStatus = ''; this.currentPage++;
} else { this.loaded = res.data.storeCombinationQueryVos.length < this.limit;
that.loadStatus = 'over'; this.loading = false;
}
that.loading = false;
}); });
// that.$api('goods.grouponList', { // that.$api('goods.grouponList', {
@ -123,43 +112,51 @@ export default {
// } // }
// }); // });
} }
},
onReachBottom() {
!this.loading && this.getGrouponList();
} }
}; };
</script> </script>
<style lang="scss"> <style lang="scss">
.group-wrap { .group-wrap {
background: url('~@/static/images/index-bg.png') no-repeat; background: url('~@/static/images/index-bg.png') no-repeat;
background-size: 100% 374rpx; background-size: 100% 374rpx;
} }
.group-head {
.group-head {
padding: 0 25rpx; padding: 0 25rpx;
height: 100rpx; height: 100rpx;
.group-head__title { .group-head__title {
font-size: 32rpx; font-size: 32rpx;
font-family: PingFang SC; font-family: PingFang SC;
font-weight: 500; font-weight: 500;
color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, 1);
} }
.group-head__notice { .group-head__notice {
font-size: 26rpx; font-size: 26rpx;
font-family: PingFang SC; font-family: PingFang SC;
font-weight: 500; font-weight: 500;
color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, 1);
} }
} }
.group-box { .group-box {
width: 710rpx; width: 710rpx;
background: linear-gradient(#fff, #f5f5f5); background: linear-gradient(#fff, #f5f5f5);
border-radius: 20rpx; border-radius: 20rpx;
margin: 0 auto; margin: 0 auto;
min-height: 1000rpx; min-height: 1000rpx;
.goods-item { .goods-item {
border-radius: 20rpx; border-radius: 20rpx;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
margin-bottom: 20rpx; margin-bottom: 20rpx;
.tag { .tag {
position: absolute; position: absolute;
left: 0; left: 0;
@ -174,15 +171,19 @@ export default {
font-weight: bold; font-weight: bold;
color: rgba(255, 255, 255, 0.8); color: rgba(255, 255, 255, 0.8);
} }
/deep/.goods-right { /deep/.goods-right {
width: 460rpx; width: 460rpx;
.title { .title {
width: 460rpx; width: 460rpx;
} }
.tip { .tip {
width: 460rpx; width: 460rpx;
} }
} }
.buy-btn { .buy-btn {
position: absolute; position: absolute;
right: 0; right: 0;
@ -198,6 +199,7 @@ export default {
color: #fff; color: #fff;
padding: 0; padding: 0;
} }
.group-num { .group-num {
font-size: 20rpx; font-size: 20rpx;
font-family: PingFang SC; font-family: PingFang SC;
@ -205,11 +207,13 @@ export default {
color: rgba(153, 153, 153, 1); color: rgba(153, 153, 153, 1);
margin-left: 20rpx; margin-left: 20rpx;
} }
.sell-box { .sell-box {
background: rgba(255, 224, 226, 0.3); background: rgba(255, 224, 226, 0.3);
border-radius: 16rpx; border-radius: 16rpx;
line-height: 32rpx; line-height: 32rpx;
padding: 0 10rpx; padding: 0 10rpx;
.sell-num { .sell-num {
font-size: 20rpx; font-size: 20rpx;
font-family: PingFang SC; font-family: PingFang SC;
@ -224,5 +228,5 @@ export default {
} }
} }
} }
} }
</style> </style>

2
pages/shop/Live/LiveList/index.vue

@ -94,7 +94,7 @@
page: that.currentPage, page: that.currentPage,
size: that.size size: that.size
}).then(res => { }).then(res => {
that.liveList = [...that.liveList, ...res.data.content]; that.liveList = that.liveList.concat(res.data.content)
this.currentPage++; this.currentPage++;
this.loaded = res.data.content.length < that.size; this.loaded = res.data.content.length < that.size;
this.loading = false; this.loading = false;

Loading…
Cancel
Save