tianyi 3 weeks ago
parent
commit
60254146a8
  1. 12
      package2/group/groupBuySingle.vue

12
package2/group/groupBuySingle.vue

@ -557,12 +557,18 @@
<!-- 参团成功提示弹出层 --> <!-- 参团成功提示弹出层 -->
<uni-popup ref="tishiPopup" background-color="#fff"> <uni-popup ref="tishiPopup" background-color="#fff">
<view class="tishi-popup"> <view class="tishi-popup">
<view class="tishi-copy"> <view class="tishi-copy" v-if="!isPindan">
<view class="tishi-copy-title">面对面团不会公开显示</view> <view class="tishi-copy-title">面对面团不会公开显示</view>
<view class="tishi-copy-desc"> <view class="tishi-copy-desc">
选择<text class="tishi-copy-highlight">配送</text>订单会统一送达 选择<text class="tishi-copy-highlight">配送</text>订单会统一送达
</view> </view>
</view> </view>
<view class="tishi-copy" v-if="isPindan">
<view class="tishi-copy-title">拼单提醒</view>
<view class="tishi-copy-desc">
您已开启拼单模式赶快选择心动的商品吧
</view>
</view>
</view> </view>
</uni-popup> </uni-popup>
<!-- 参团成功提示弹出层 --> <!-- 参团成功提示弹出层 -->
@ -647,6 +653,7 @@
return { return {
loadStatus: 'more', loadStatus: 'more',
type: '', type: '',
isPindan:true,
shopId: '', shopId: '',
shopItem: { shopItem: {
shopIcon: '', shopIcon: '',
@ -1170,6 +1177,8 @@
}, },
chooseOrderWait(item) { chooseOrderWait(item) {
this.$refs.pintuanGroupPopup.close(); this.$refs.pintuanGroupPopup.close();
this.isPindan = true;
this.$refs.tishiPopup.open();
this.groupId = item.id; this.groupId = item.id;
this.targetMembers = parseInt(item.targetMembers); this.targetMembers = parseInt(item.targetMembers);
this.selectedCoupon = null; this.selectedCoupon = null;
@ -1747,6 +1756,7 @@
}); });
}, },
openMianRemark(){ openMianRemark(){
this.isPindan = false;
this.$refs.tishiPopup.open() this.$refs.tishiPopup.open()
}, },
selectCoupon(item) { selectCoupon(item) {

Loading…
Cancel
Save