diff --git a/package1/buyFood/buyFood.vue b/package1/buyFood/buyFood.vue index 7bb99e7..12bacc3 100644 --- a/package1/buyFood/buyFood.vue +++ b/package1/buyFood/buyFood.vue @@ -556,7 +556,7 @@ } if (option.item) { this.groupItem = JSON.parse(decodeURIComponent(option.item)); - console.log("1111111",this.groupItem) + this.isGroupBuy = this.groupItem.orderType === 2; this.isFaceToFace = this.groupItem.isFaceToFace || false; this.orderScene = this.groupItem.orderScene || this.orderScene; @@ -688,7 +688,7 @@ let targetMembers = this.groupItem?.groupRule?.groupCount || 2; let shopItemStr = encodeURIComponent(JSON.stringify(this.shopItem)); let isFTF = this.isFaceToFace ? 1 : 0; - console.log(shopItemStr) + let sceneQuery = this.isStoreGroupOrder ? '&orderScene=storeGroup' : ''; let path = `/package2/group/groupBuySingle?type=shop&item=${shopItemStr}&groupId=${groupId}&targetMembers=${targetMembers}&isFaceToFace=${isFTF}${sceneQuery}`; diff --git a/package1/index/deliveryPersonList.vue b/package1/index/deliveryPersonList.vue index f4bd8ec..ba02f6e 100644 --- a/package1/index/deliveryPersonList.vue +++ b/package1/index/deliveryPersonList.vue @@ -165,7 +165,7 @@ }, methods: { getLoca(item){ - console.log('aaaaa',item) + this.markers = [{ id: 0, latitude: item.geolocation[0], diff --git a/package1/order/orderDetail.vue b/package1/order/orderDetail.vue index 5a29bc1..0a417e1 100644 --- a/package1/order/orderDetail.vue +++ b/package1/order/orderDetail.vue @@ -891,12 +891,10 @@ this.$refs.imgPopup.open() this.$refs.uqrcode.toTempFilePath({ success: res => { - console.log(res) + that.newQRList = res.tempFilePath }, - fail: err => { - console.log(err) - } + fail: err => {} }); }, pictureAdd(id, huan) { @@ -991,7 +989,6 @@ }); }, checkEvaluate() { - console.log(this.orderDetail) if (this.orderDetail.comments != null && this.orderDetail.comments.length > 0) { this.$refs.evaluatePopup.open() } else { diff --git a/package1/order/orderEvaluate.vue b/package1/order/orderEvaluate.vue index ca8e7dc..e5d704d 100644 --- a/package1/order/orderEvaluate.vue +++ b/package1/order/orderEvaluate.vue @@ -179,7 +179,6 @@ }, onLoad(option) { this.shopData = JSON.parse(option.item) - console.log(this.shopData.deliveryType) if(this.shopData.deliveryType == 1){ this.getOrderDetail() } diff --git a/package1/order/orderList.vue b/package1/order/orderList.vue index 0f055d9..01d0c4d 100644 --- a/package1/order/orderList.vue +++ b/package1/order/orderList.vue @@ -502,7 +502,6 @@ } else { that.orderList = [...that.orderList, ...res.result.records] } - console.log(that.orderList) for(let i=0;i