瀏覽代碼

修复查询团长二维码问题

pangqijun 1 年之前
父節點
當前提交
e0a97c8f06

+ 18 - 3
pages/groupbuying/leader_order_details/index.vue

@@ -149,8 +149,8 @@ export default {
 	},
 	methods: {
 		agreeAfterSales(afterSalesNo) {
+      uni.showLoading({ title: '处理中' });
 			let that = this;
-			console.log(that.wlNo)
 			if (!afterSalesNo) {
 				return that.$util.Tips({
 					title: '售后编号不能为空'
@@ -159,12 +159,19 @@ export default {
 			agreeAfterSales({
 				afterSalesNo: afterSalesNo
 			}).then(res => {
+        uni.hideLoading();
 				this.getCommanderOrderDetail(that.grouponId, that.queryType, that.state)
 				return that.$util.Tips({
 					title: '操作成功',
 					icon: 'success'
 				});
-			})
+			}).catch(err => {
+        uni.hideLoading();
+        uni.showToast({
+          title: err,
+          icon: 'none'
+        });
+      });
 		},
 		refuseAfterSalesShow(item) {
 			this.afterSalesNo = item;
@@ -177,14 +184,22 @@ export default {
 					title: '请输入驳回原因'
 				});
 			}
+      uni.showLoading({ title: '处理中' });
 			refuseAfterSales(that.afterSalesNo, that.refuseReason).then(res => {
+        uni.hideLoading();
 				this.showWl = false;
 				this.getCommanderOrderDetail(that.grouponId, that.queryType, that.state)
 				return that.$util.Tips({
 					title: '操作成功',
 					icon: 'success'
 				});
-			})
+			}).catch(err => {
+        uni.hideLoading();
+        uni.showToast({
+          title: err,
+          icon: 'none'
+        });
+      });
 		},
 		getCommanderOrderDetail(grouponId, queryType, state) {
 			let that = this;

+ 40 - 3
pages/groupbuying_details/order_details_confirm/index.vue

@@ -68,7 +68,7 @@
 								</text>
 							</view>
 							<view class="a-b2">
-								<image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" @click="openPopup"></image>
+								<image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" @click="openPopup(selfTake.qrCode)"></image>
 								<image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" @click="callPhone(selfTake.contactNumber)"></image>
 							</view>
 						</view>
@@ -164,7 +164,7 @@
 				<image
 						class="image_3"
 						referrerpolicy="no-referrer"
-						:src="grouponOrderData.qrCode"
+						:src="qrCode"
 						show-menu-by-longpress="true"
 				/>
 				<text class="text_23">长按图片识别&nbsp;“加团长微信”</text>
@@ -271,6 +271,7 @@ export default {
 			format: true
 		})
 		return {
+      qrCode: '',
 			selfTakeShow: false,
 			selectSelfTakePopupShow: false,
 			confirm: '', //自定义留言
@@ -477,7 +478,14 @@ export default {
 			this.$refs.popup.close()
 		},
 
-		openPopup(){
+		openPopup(qrCode){
+      let that = this;
+      this.qrCode = qrCode;
+      if (!this.qrCode) {
+        return that.$util.Tips({
+          title: that.$t(`团长未设置微信号`)
+        });
+      }
 			this.$refs.popup.open()
 		},
 
@@ -2229,5 +2237,34 @@ export default {
     }
   }
 
+  .block_3 {
+    background-color: rgba(255, 255, 255, 1);
+    border-radius: 4px;
+    padding: 16rpx 16rpx 32rpx 24rpx;
+    display: flex;
+    flex-direction: column;
+  }
+
+  .icon_1 {
+    width: 32rpx;
+    height: 32rpx;
+    margin-left: 566rpx;
+  }
 
+  .image_3 {
+    width: 590rpx;
+    height: 766rpx;
+    margin: 16rpx 8rpx 0 0;
+  }
+
+  .text_23 {
+    overflow-wrap: break-word;
+    color: rgba(51, 51, 51, 1);
+    font-size: 28rpx;
+    font-weight: NaN;
+    text-align: center;
+    white-space: nowrap;
+    line-height: 40rpx;
+    margin: 24rpx 128rpx 0 122rpx;
+  }
 </style>

+ 79 - 2
pages/groupbuying_details/order_details_list/index.vue

@@ -113,8 +113,8 @@
 								</text>
 							</view>
 							<view class="a-b2">
-								<image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" />
-								<image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" />
+								<image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" @click="openGroupWx(orderDetail.qrCode)"/>
+								<image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" @click="callPhone(orderDetail.phone)"/>
 							</view>
 						</view>
 					</block>
@@ -300,6 +300,24 @@
 		<payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
 				 :totalPrice="totalPrice"></payment>
 
+
+    <uni-popup ref="popup" type="center">
+      <view class="block_3">
+        <image  @click="closePopup"
+                class="icon_1"
+                referrerpolicy="no-referrer"
+                src="/static/images/X.png"
+        />
+        <image
+            class="image_3"
+            referrerpolicy="no-referrer"
+            :src="qrCode"
+            show-menu-by-longpress="true"
+        />
+        <text class="text_23">长按图片识别&nbsp;“加团长微信”</text>
+      </view>
+    </uni-popup>
+
 	</view>
 </template>
 <script>
@@ -334,6 +352,7 @@ export default {
 	mixins: [colors],
 	data () {
 		return {
+		  qrCode: '',
       showWl: false,
       wlNo: '',
 			pay_orderId: '',
@@ -394,6 +413,34 @@ export default {
 		})
 	},
 	methods: {
+    /**
+     * 打开团长微信
+     */
+    closePopup(){
+      this.$refs.popup.close()
+    },
+    /**
+     * 打开团长微信
+     */
+    openGroupWx(qrCode){
+      let that = this;
+      this.qrCode = qrCode;
+      if (!this.qrCode) {
+        return that.$util.Tips({
+          title: that.$t(`团长未设置微信号`)
+        });
+      }
+      this.$refs.popup.open()
+    },
+    /**
+     * 拨打电话
+     */
+    callPhone(phone){
+      uni.makePhoneCall({
+        phoneNumber: phone
+      })
+    },
+
 		/**
 		 * 打开支付组件
 		 *
@@ -1487,6 +1534,36 @@ export default {
 	}
 
 
+  .block_3 {
+    background-color: rgba(255, 255, 255, 1);
+    border-radius: 4px;
+    padding: 16rpx 16rpx 32rpx 24rpx;
+    display: flex;
+    flex-direction: column;
+  }
+
+  .icon_1 {
+    width: 32rpx;
+    height: 32rpx;
+    margin-left: 566rpx;
+  }
+
+  .image_3 {
+    width: 590rpx;
+    height: 766rpx;
+    margin: 16rpx 8rpx 0 0;
+  }
+
+  .text_23 {
+    overflow-wrap: break-word;
+    color: rgba(51, 51, 51, 1);
+    font-size: 28rpx;
+    font-weight: NaN;
+    text-align: center;
+    white-space: nowrap;
+    line-height: 40rpx;
+    margin: 24rpx 128rpx 0 122rpx;
+  }
 
 
 </style>