|
@@ -174,9 +174,9 @@ async function tryGrab() {
|
|
|
async function doGrabByNormal() {
|
|
async function doGrabByNormal() {
|
|
|
let theAcType = 'AM';
|
|
let theAcType = 'AM';
|
|
|
let nowDate = new Date();
|
|
let nowDate = new Date();
|
|
|
- // if (nowDate.getHours() > 12) {
|
|
|
|
|
- // theAcType = 'PM';
|
|
|
|
|
- // }
|
|
|
|
|
|
|
+ if (nowDate.getHours() > 12) {
|
|
|
|
|
+ theAcType = 'PM';
|
|
|
|
|
+ }
|
|
|
let tipsText = ``;
|
|
let tipsText = ``;
|
|
|
let taskInfoList = getTaskInfoList();
|
|
let taskInfoList = getTaskInfoList();
|
|
|
for (let i = 0; i < taskInfoList.length; i++) {
|
|
for (let i = 0; i < taskInfoList.length; i++) {
|