From c5b4d1a66372b94420146f9a640aee31f402889a Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Mon, 10 May 2021 16:02:37 +0800 Subject: [PATCH] fix(Coupon): timestamp can be string type --- 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 3b10cd5f1..947ac1487 100644 --- a/src/coupon/index.js +++ b/src/coupon/index.js @@ -10,7 +10,7 @@ function formatTimeStamp(timeStamp) { if (timeStamp < 10 ** 12) { return timeStamp * 1000; } - return timeStamp; + return +timeStamp; } function getDate(timeStamp) {