tianyi 2 weeks ago
parent
commit
868df84d51
  1. 3
      package1/buyFood/buyFood.vue
  2. 3
      package1/group/groupBuySingle.vue

3
package1/buyFood/buyFood.vue

@ -603,12 +603,9 @@
this.$refs.warnPopup.open(); this.$refs.warnPopup.open();
return; return;
} }
// Validation successful, submit order to backend first to get backendTotalAmount
this.submitOrderToBackend(); this.submitOrderToBackend();
}, },
goDetail() { goDetail() {
// Pass match conditions to worker list
let shopArea = this.shopItem.shopArea || ''; let shopArea = this.shopItem.shopArea || '';
let putArea = this.formData.address ? this.formData.address.areaId : ''; let putArea = this.formData.address ? this.formData.address.areaId : '';
uni.navigateTo({ uni.navigateTo({

3
package1/group/groupBuySingle.vue

@ -98,7 +98,7 @@
<view style="width: 160rpx;">{{item.categoryName}}</view> <view style="width: 160rpx;">{{item.categoryName}}</view>
</view> </view>
</scroll-view> </scroll-view>
<scroll-view class="goods-list" :style="{'overflow':lastScrollTop>217?'scroll':'hidden'}" :scroll-into-view="scrollIntoViewId" :scroll-top="goodsListScrollTop" @scroll="onGoodsListScroll" @scrolltoupper="onGoodsListScrollToTop" :scroll-with-animation="true"> <scroll-view class="goods-list" scroll-y :scroll-into-view="scrollIntoViewId" :scroll-top="goodsListScrollTop" @scroll="onGoodsListScroll" @scrolltoupper="onGoodsListScrollToTop" :scroll-with-animation="true">
<view class="goods-member" :id="'category-' + item.categoryId" v-for="(item,index) in productItem" :key="index" <view class="goods-member" :id="'category-' + item.categoryId" v-for="(item,index) in productItem" :key="index"
@tap="goDetail('product',item)"> @tap="goDetail('product',item)">
<view class="goods-top"> <view class="goods-top">
@ -1578,7 +1578,6 @@
flex: 1; flex: 1;
height: 100%; height: 100%;
border-radius: 20rpx; border-radius: 20rpx;
overflow: hidden;
} }
.container-sticky { .container-sticky {

Loading…
Cancel
Save