mirror of https://github.com/6dylan6/jdpro.git
fix: statistics details failure
This commit is contained in:
parent
fca0f6c724
commit
c9d055592f
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue