1
0
mirror of https://github.com/6dylan6/jdpro.git synced 2025-07-14 00:23:10 +08:00

fix: statistics details failure

This commit is contained in:
GweesinChan
2024-07-28 13:08:17 +08:00
parent fca0f6c724
commit c9d055592f

View File

@ -114,7 +114,10 @@ async function bean() {
} }
} }
} else { } else {
$.errorMsg = `数据异常`; // 完全无数据时才抛出异常,否则返回之前统计出来的数据
if (!todayArr.length && !yesterdayArr.length) {
$.errorMsg = `数据异常`;
}
// $.msg($.name, ``, `账号${$.index}${$.nickName}\n${$.errorMsg}`); // $.msg($.name, ``, `账号${$.index}${$.nickName}\n${$.errorMsg}`);
t = 1; t = 1;
} }