From e1d95ca065e9d941b059ddafd0af33d94c3d1900 Mon Sep 17 00:00:00 2001 From: wangsongsole Date: Wed, 6 Mar 2024 17:51:13 +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 --- reduce.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reduce.html b/reduce.html index 1a2e88c..175d705 100644 --- a/reduce.html +++ b/reduce.html @@ -264,11 +264,11 @@ req.axiosPost("/voucher/grant", params) .then((res) => { if (res.code == 200) { - self.openErrorDialog('领取成功'); + this.openErrorDialog('领取成功'); this.goodInfo.available = 9; sessionStorage.setItem('goodInfo', JSON.stringify(this.goodInfo)); } else { - self.openErrorDialog(res.message); + this.openErrorDialog(res.message); } }) .catch((err) => { this.loading = false; });