拼团显示、秒杀时间、运费模块bug修改
This commit is contained in:
@ -9,7 +9,8 @@
|
||||
</view>
|
||||
<view class="group-box">
|
||||
<view class="goods-item" v-for="(groupon, index) in grouponList" :key="groupon.id">
|
||||
<activity-card :cid="groupon.id" :title="groupon.title" :info="groupon.info" :img="groupon.image" :price="groupon.price" :productPrice="groupon.productPrice">
|
||||
<activity-card
|
||||
:cid="groupon.id" :title="groupon.title" :info="groupon.info" :img="groupon.image" :price="groupon.price" :productPrice="groupon.productPrice">
|
||||
<block slot="tag">
|
||||
<view class="tag" v-if="index < 3">TOP{{ index + 1 }}</view>
|
||||
</block>
|
||||
@ -22,7 +23,9 @@
|
||||
<text class="group-num">{{ groupon.people || 0 }}人团</text>
|
||||
</view>
|
||||
</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>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<view class="tui-bg__box">
|
||||
<image :src="`${$VUE_APP_RESOURCES_URL}/images/bg_seckill.png`" class="tui-bg__img" mode="widthFix" :style="{ opacity: opacity }"></image>
|
||||
</view>
|
||||
|
||||
<view class="tui-header__bg">
|
||||
<image :src="`${$VUE_APP_RESOURCES_URL}/images/bg_seckill.png`" class="tui-bg__img" mode="widthFix"></image>
|
||||
<scroll-view class="tui-time-slot" scroll-x>
|
||||
@ -212,7 +213,7 @@ export default {
|
||||
height: 210rpx;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
top: 80rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@ -221,7 +222,7 @@ export default {
|
||||
height: 120rpx;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
top: 80rpx;
|
||||
z-index: 3;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
@ -97,7 +97,7 @@ export default {
|
||||
getAddress(that.id).then(res => {
|
||||
that.userAddress = res.data;
|
||||
that.addressText =
|
||||
res.data.province + " " + res.data.city + " " + res.data.district;
|
||||
res.data.province + " " + res.data.city + " " + res.data.district;
|
||||
that.address.province = res.data.province;
|
||||
that.address.city = res.data.city;
|
||||
that.address.district = res.data.district;
|
||||
|
Reference in New Issue
Block a user