|
@@ -974,7 +974,7 @@ const calculateParticipantCounts = async () => {
|
|
|
const completedScores = scores.filter(score => {
|
|
const completedScores = scores.filter(score => {
|
|
|
// 成绩必须存在且大于0
|
|
// 成绩必须存在且大于0
|
|
|
const sc = score.classification === '0' ? score.individualPerformance : score.teamPerformance;
|
|
const sc = score.classification === '0' ? score.individualPerformance : score.teamPerformance;
|
|
|
- if (sc === null || sc === undefined || sc === '') {
|
|
|
|
|
|
|
+ if (sc === null || sc === undefined || sc === '' || sc === '00:00:00.000') {
|
|
|
return false;
|
|
return false;
|
|
|
}
|
|
}
|
|
|
if (typeof sc === 'number') {
|
|
if (typeof sc === 'number') {
|