Signed-off-by: tangshizhe <48740614+tangshizhe@users.noreply.github.com>
@@ -501,7 +501,7 @@
const currentTime = Math.floor(Date.now() / 1000)
// 判断是否过期
const { startTime, endTime } = data
- if (startTime < currentTime < endTime) {
+ if (startTime < currentTime && currentTime < endTime) {
this.isShowGift = true
}
else {