From bb762e8380490c54879803b5653b102a677d866d Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Mon, 8 Jan 2024 18:33:45 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=E5=8D=A1=E5=AF=86=E9=A1=B5?= =?UTF-8?q?=E6=96=B0=E5=A2=9Eloding?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coupon/lookCard.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/coupon/lookCard.html b/coupon/lookCard.html index 13ee90c..304e0d9 100644 --- a/coupon/lookCard.html +++ b/coupon/lookCard.html @@ -12,6 +12,8 @@ + + @@ -87,6 +89,9 @@ +
+ +
@@ -103,7 +108,8 @@ show_url: null, }, toastShow: false, - toastTip: '' + toastTip: '', + loading: true }; }, @@ -127,10 +133,12 @@ getInfo () { const orderNumber = localStorage.getItem('orderNumber'); + this.loading = true; /* 获取卡密详情 */ req.axiosGet(`/key/order/detail/${orderNumber}`).then(res => { if (res.code == 200) { this.cardData = res.data; + this.loading = false; } }); },