From 19d5d203d5c658b1f7d9b8e95de169e1f7a1269b Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Sun, 4 Feb 2024 15:09:51 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=80=EF=B8=8F=20fix:=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orderDetails/cardOrder.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/orderDetails/cardOrder.html b/orderDetails/cardOrder.html index 7f5ae44..07ad19a 100644 --- a/orderDetails/cardOrder.html +++ b/orderDetails/cardOrder.html @@ -25,7 +25,7 @@ alt="" class="dashedline"> @@ -84,8 +84,8 @@ const orderNumber = sessionStorage.getItem('orderNumber'); req.axiosGet(`/key/order/detail/${orderNumber}`).then(res => { if (res.code == 200) { - const { product_name, recharge_time, status, show_url, card_number, card_password } = res.data; - goods.value = { product_name, recharge_time, status, show_url, card_number, card_password, card_show: res.data.goods.card_show }; + const { product_name, status, show_url, card_number, card_password } = res.data; + goods.value = { product_name, time: res.data.goods.end_time, status, show_url, card_number, card_password, card_show: res.data.goods.card_show }; } }); }