From 89a9eaebdd49f21b0b82d423b38790d15081f231 Mon Sep 17 00:00:00 2001 From: zhangds Date: Wed, 3 Apr 2024 19:39:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 44 ++------------------------------------------ reduce.html | 29 +++++++++++++++++------------ 2 files changed, 19 insertions(+), 54 deletions(-) diff --git a/index.html b/index.html index 17da62a..474036b 100644 --- a/index.html +++ b/index.html @@ -214,15 +214,12 @@ }, }, methods: { - // 统一跳转逻辑判断 gotoPage(data, type) { - // 微信授权回调地址 let wxauth_url = "https://openapi.1688sup.com/wechat/oauth"; - // 判断是否是微信打开 - var ua = navigator.userAgent.toLowerCase(); - if (ua.match(/MicroMessenger/i) == "micromessenger") { + // 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址 + if (data.is_have_webview_voucher) { // 第二步:判断是否是包码 是 -> 走包码回调地址 if (data.settlement_data && data.settlement_data.settlement_type > 0) { // ***包码逻辑 打开结算 2 @@ -238,7 +235,6 @@ wxauth_url = `${wxauth_url}?jump=${location.origin}/homepage.html`; } } - } else { // 第三步:不需要微信静默授权 if (data.settlement_data && data.settlement_data.settlement_type > 0) { @@ -256,42 +252,6 @@ } } } - - // 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址 - // if (data.is_have_webview_voucher) { - // // 第二步:判断是否是包码 是 -> 走包码回调地址 - // if (data.settlement_data && data.settlement_data.settlement_type > 0) { - // // ***包码逻辑 打开结算 2 - // if (!data.settlement_data.is_settlement && data.settlement_data.settlement_type === 2) { - // settlementFun(data.token, data.settlement_data.settlement_type); - // } - // wxauth_url = `${wxauth_url}?jump=${location.origin}/packkey/bm-index.html`; - // } else { - // // 不是包码 - // if (this.pageType === 4 || this.pageType === 8) { - // wxauth_url = `${wxauth_url}?jump=${location.origin}/coupon/couponCollection.html`; - // } else { - // wxauth_url = `${wxauth_url}?jump=${location.origin}/homepage.html`; - // } - // } - // } else { - // // 第三步:不需要微信静默授权 - // if (data.settlement_data && data.settlement_data.settlement_type > 0) { - // // ***包码逻辑 打开结算 2 - // if (!data.settlement_data.is_settlement && data.settlement_data.settlement_type === 2) { - // settlementFun(data.token, data.settlement_data.settlement_type); - // } - // wxauth_url = '/packkey/bm-index.html'; - // } else { - // // 不是包码 - // if (this.pageType === 4 || this.pageType === 8) { - // wxauth_url = '/coupon/couponCollection.html'; - // } else { - // wxauth_url = '/homepage.html'; - // } - // } - // } - // 第四步:是否需要记录 当前页面 setTimeout(() => { if (type) { diff --git a/reduce.html b/reduce.html index f9a866e..b5eb857 100644 --- a/reduce.html +++ b/reduce.html @@ -234,21 +234,26 @@ if (res.code == 200) { sessionStorage.setItem("lastid", self.goodInfo.product_id); this.orderId = res.data.order_number; - let ua = navigator.userAgent.toLowerCase(); //判断用户打开链接环境 - // 第一步:如果是微信 - if (ua.match(/MicroMessenger/i) == "micromessenger") { - this.publicCollection(res.data.order_number); - return - } - - // 如果是支付宝 - if (ua.match(/Alipay/i) == "alipay") { + if (self.plaflam == 1) { + //支付宝-微信环境中不能唤起支付宝 self.toLinkAlipay(); - return; } - // 其它方式 唤起微信福利官小程序 - window.location.replace(res.data.redirect_url); + if (self.plaflam == 2) { + //微信 + // if (ua.indexOf("dingtalk") > -1) { + // //在钉钉内置环境打开,不能唤起微信小程序 + // self.openErrorDialog("请在其他浏览器打开!"); + // } else { + if (this.goodInfo.entity.is_webview == 1) { + this.publicCollection(res.data.order_number); + } else { + //唤起微信福利官小程序 + window.location.replace(res.data.redirect_url); + } + + // } + } } else { self.openErrorDialog(res.message); if (res.code == 403) {