wangfukang 4 weeks ago
parent
commit
e5f1dd57f9
  1. 6
      package1/buyFood/buyFood.vue
  2. 6
      package1/group/groupBuySingle.vue

6
package1/buyFood/buyFood.vue

@ -987,6 +987,12 @@
this.backendTotalAmount = totalAmount; this.backendTotalAmount = totalAmount;
this.currentOrderId = orderId; this.currentOrderId = orderId;
this.createdOrderInfo = res.result; this.createdOrderInfo = res.result;
if(res.result.isFreeOrder == 1){
uni.showToast({
title: '锦鲤附身 免单' + res.result.freeAmount + '元',
icon: 'none'
});
}
this.$refs.payPopup.open('bottom'); this.$refs.payPopup.open('bottom');
} else { } else {
uni.showToast({ uni.showToast({

6
package1/group/groupBuySingle.vue

@ -1302,6 +1302,12 @@
this.currentOrderId = res.result.id; this.currentOrderId = res.result.id;
this.groupdeliveryType = res.result.deliveryType; this.groupdeliveryType = res.result.deliveryType;
this.backendTotalAmount = res.result.totalAmount; this.backendTotalAmount = res.result.totalAmount;
if(res.result.isFreeOrder == 1){
uni.showToast({
title: '锦鲤附身 免单' + res.result.freeAmount + '元',
icon: 'none'
});
}
this.$refs.payPopup.open('bottom'); this.$refs.payPopup.open('bottom');
if (this.$refs.pintuanPopup) this.$refs.pintuanPopup.close(); if (this.$refs.pintuanPopup) this.$refs.pintuanPopup.close();
} else { } else {

Loading…
Cancel
Save