From c401b8d7af5df38ebe158d0cd3695845e0ef3496 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Mon, 2 Mar 2020 19:25:39 +0800 Subject: [PATCH] fix(Coupon): incorrect destruction --- src/coupon/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coupon/index.js b/src/coupon/index.js index e40a6b447..a7740c145 100644 --- a/src/coupon/index.js +++ b/src/coupon/index.js @@ -40,7 +40,7 @@ export default createComponent({ }, faceAmount() { - const { coupon } = this.coupon; + const { coupon } = this; if (coupon.valueDesc) { return `${coupon.valueDesc}${coupon.unitDesc || ''}`;