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; } }); },