Browse Source

拼团、砍价详情增加下拉刷新;品牌详情品牌头像圆角位置边宽问题

home_hotList
whyneedname 2 years ago
parent
commit
8c1e552e83
  1. 6
      pages.json
  2. 8
      pages/activity/DargainDetails/index.vue
  3. 4
      pages/activity/GroupRule/index.vue
  4. 2
      pages/shop/GoodsCon/index.vue
  5. 2
      pages/shop/IntegralGoodsCon/index.vue
  6. 2
      pages/shop/brands/brandDetail/index.vue

6
pages.json

@ -414,7 +414,8 @@
"path": "pages/activity/DargainDetails/index",
"style": {
"navigationBarTitleText": "砍价详情",
"navigationStyle": "custom"
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{
@ -446,7 +447,8 @@
"path": "pages/activity/GroupRule/index",
"style": {
"navigationBarTitleText": "拼团详情",
"navigationStyle": "custom"
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{

8
pages/activity/DargainDetails/index.vue

@ -325,6 +325,14 @@ export default {
mounted: function () {
this.mountedStart()
},
onPullDownRefresh() {
this.getBargainShare(0);
if (this.bargainUid !== this.userInfo.uid) {
this.getBargainStartUser();
}
this.getBargainHelpList();
uni.stopPullDownRefresh();
},
methods: {
//
mountedStart: function () {

4
pages/activity/GroupRule/index.vue

@ -209,6 +209,10 @@ export default {
imageUrl: this.storeCombination.image
}
},
onPullDownRefresh() {
this.getCombinationPink();
uni.stopPullDownRefresh();
},
methods: {
swiperChange(e) {
this.swiperCurrent = e.detail.current;

2
pages/shop/GoodsCon/index.vue

@ -156,7 +156,7 @@
<user-evaluation :reply="reply"></user-evaluation>
</view>
<view class="product-parameter" v-if="storeInfo.parameter">
<view class="product-parameter" v-if="storeInfo.parameter.length > 0">
<view class="title">商品参数</view>
<view :class="'parameter-list ' + (isUnfold?'unfold':'')" :style="isUnfold?'height: auto;':'max-height: 184rpx;'">
<view class="parameter-item acea-row" v-for="(item,index) in storeInfo.parameter" :key="index">

2
pages/shop/IntegralGoodsCon/index.vue

@ -59,7 +59,7 @@
<user-evaluation :reply="reply"></user-evaluation>
</view>
<view class="product-parameter" v-if="storeInfo.parameter">
<view class="product-parameter" v-if="storeInfo.parameter.length > 0">
<view class="title">商品参数</view>
<view :class="'parameter-list ' + (isUnfold?'unfold':'')" :style="isUnfold?'height: auto;':'max-height: 184rpx;'">
<view class="parameter-item acea-row" v-for="(item,index) in storeInfo.parameter" :key="index">

2
pages/shop/brands/brandDetail/index.vue

@ -217,7 +217,7 @@
width: 100%;
height: 100%;
background: #F5F6F8;
border-radius: 16rpx;
border-radius: 14rpx;
}
}
.info-box {

Loading…
Cancel
Save