From 206c77f857775a9cbb65a4fef38dd2cb95f6cb1d Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 14:43:38 +0800 Subject: [PATCH 1/8] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E6=8E=88=E6=9D=83=E5=9B=9E=E8=B0=83=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index abaca27..2427271 100644 --- a/index.html +++ b/index.html @@ -217,7 +217,7 @@ // 统一跳转逻辑判断 gotoPage(data, type) { // 微信授权回调地址 - let wxauth_url = "https://openapi.1688sup.com/wechat/oauth"; + let wxauth_url = "https://22233.cn/wechat/oauth"; // 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址 if (data.is_have_webview_voucher) { // 第二步:判断是否是包码 是 -> 走包码回调地址 From 0325454c9fa4f17ec47c948e83512f245d1a5e53 Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 16:06:54 +0800 Subject: [PATCH 2/8] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8E=88=E6=9D=83?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2427271..abaca27 100644 --- a/index.html +++ b/index.html @@ -217,7 +217,7 @@ // 统一跳转逻辑判断 gotoPage(data, type) { // 微信授权回调地址 - let wxauth_url = "https://22233.cn/wechat/oauth"; + let wxauth_url = "https://openapi.1688sup.com/wechat/oauth"; // 第一步:判断是否是 微信静默授权 是 -> 拼接回调地址 if (data.is_have_webview_voucher) { // 第二步:判断是否是包码 是 -> 走包码回调地址 From 09255aba7dfdaedd9243fbf6a488ef96c9581ea1 Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 16:20:25 +0800 Subject: [PATCH 3/8] =?UTF-8?q?fix:=20=E7=A6=81=E6=AD=A2toDetails?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coupon/myOrder.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coupon/myOrder.html b/coupon/myOrder.html index 986d93a..77d04ca 100644 --- a/coupon/myOrder.html +++ b/coupon/myOrder.html @@ -227,7 +227,8 @@ }, /* 立即支付按钮 */ - immediatelyPay(item) { + immediatelyPay(item, event) { + event.stopPropagation(); localStorage.setItem('goodsInfo', JSON.stringify(item)); window.location.href = `./settlement.html?orderNumber=${item.order_number}&payType=${item.pay_type}`; }, From 5a099c9469fdc2275328ca176c4928146f1239fe Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 16:29:41 +0800 Subject: [PATCH 4/8] =?UTF-8?q?fix:=20=E6=88=91=E7=9A=84=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=EF=BC=8C=20=E9=98=BB=E6=AD=A2=E4=BA=8B=E4=BB=B6=E5=86=92?= =?UTF-8?q?=E6=B3=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coupon/myOrder.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coupon/myOrder.html b/coupon/myOrder.html index 77d04ca..2a349e0 100644 --- a/coupon/myOrder.html +++ b/coupon/myOrder.html @@ -28,7 +28,8 @@
-
+

{{item.update_time}}

{{item.status_text}} @@ -191,7 +192,7 @@ }, /*跳转详情*/ - toDetails(order) { + toDetails(order, event) { sessionStorage.setItem('orderNumber', order.order_number); switch (order.goods.product_type) { case 1: @@ -227,8 +228,7 @@ }, /* 立即支付按钮 */ - immediatelyPay(item, event) { - event.stopPropagation(); + immediatelyPay(item) { localStorage.setItem('goodsInfo', JSON.stringify(item)); window.location.href = `./settlement.html?orderNumber=${item.order_number}&payType=${item.pay_type}`; }, From bfa77829f8a9a8bea08701d4dc8a0b32d60fc921 Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 16:31:45 +0800 Subject: [PATCH 5/8] =?UTF-8?q?fix:=20=E9=98=BB=E6=AD=A2=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E5=86=92=E6=B3=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coupon/myOrder.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coupon/myOrder.html b/coupon/myOrder.html index 2a349e0..78a8cca 100644 --- a/coupon/myOrder.html +++ b/coupon/myOrder.html @@ -50,7 +50,7 @@

取消订单

-

立即支付

+

立即支付