From e75be86dfd1bce4825d6100358c729214a864f05 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Fri, 11 Nov 2022 15:17:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E3=80=90C=E7=AB=AF?= =?UTF-8?q?=E3=80=91=E3=80=90=E5=85=BC=E5=AE=B9=E3=80=91=E7=99=BE=E5=BA=A6?= =?UTF-8?q?=E6=B5=8F=E8=A7=88=E5=99=A8=EF=BC=8C=E6=97=A0=E6=B3=95=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E6=94=AF=E4=BB=98=E5=AE=9D=E5=8E=BB=E9=A2=86=E5=8F=96?= =?UTF-8?q?=E7=AB=8B=E5=87=8F=E9=87=91=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- paysuccess.html | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/paysuccess.html b/paysuccess.html index af51a31..c3433c0 100644 --- a/paysuccess.html +++ b/paysuccess.html @@ -3,14 +3,18 @@ - + 支付成功 - - + + - + @@ -58,7 +62,7 @@ plaflam: 1, payResult: false, copyLink: '', - orderId:'', + orderId: '', redirect_url: '' //微信小程序链接 }; }, @@ -115,7 +119,7 @@ this.plaflam = res.data.product.entity.channel;//只有立减金商品才有channel字段 this.redirect_url = res.data.wechat_redirect_url; this.payStatus = res.data.pay_status; - this.orderId=res.data.alipay_order_number; + this.orderId = res.data.alipay_order_number; } else { this.countdownFn(); } @@ -157,7 +161,8 @@ ); let link = "http://openapi.1688sup.com/alipay/oauth?jump=" + banklink; let ua = navigator.userAgent.toLowerCase(); //判断用户打开链接环境 - if (ua.match(/MicroMessenger/i) == "micromessenger") { + /* 判断如果是微信浏览器或者百度浏览器 则无法拉起支付宝 */ + if (ua.match(/MicroMessenger/i) == "micromessenger" || ua.indexOf("baiduboxapp") > -1) { //复制链接地址,提醒去浏览器打开 this.copyLink = link; this.openErrorDialog(`请复制链接,在其他浏览器打开`, '点击复制')