Created
July 29, 2020 01:54
-
-
Save loskael/495abf1374465d1d020251cab96e5bc1 to your computer and use it in GitHub Desktop.
一个每天签到领奖的小功能,在每天的11~13点和18~20点开放,普通用户每天可以领取一次,会员用户可以在每个时段分别领取一次
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 一个每天签到领奖的小功能,在每天的11~13点和18~20点开放 | |
// 普通用户每天可以领取一次,会员用户可以在每个时段分别领取一次 | |
if (isVip) { | |
// 会员 | |
if ([11, 12, 13].includes(hour)) { | |
// TODO 判断该时段是否领取 并 领取 | |
} | |
if ([18, 19, 20].includes(hour)) { | |
// TODO 判断该时段是否领取 并 领取 | |
} | |
} else { | |
// 普通用户 | |
if ([11, 12, 13, 18, 19, 20].includes(hour)) { | |
// TODO 判断当天是否领取 并 领取 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment