From 5a099c9469fdc2275328ca176c4928146f1239fe Mon Sep 17 00:00:00 2001 From: zhangds Date: Tue, 19 Mar 2024 16:29:41 +0800 Subject: [PATCH] =?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}`; },