Commit 1c3f5600 authored by 姬鋆屾's avatar 姬鋆屾

parent 28efb0de
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
"正常" "正常"
); );
} else { } else {
if (currentTime <= timestampToTime(new Date(), 3)) { if (currentTime < timestampToTime(new Date(), 3)) {
return "正常"; return "正常";
} else { } else {
return "--"; return "--";
...@@ -231,7 +231,7 @@ export default { ...@@ -231,7 +231,7 @@ export default {
) { ) {
return this.handleArr(row.attendanceStaffStatEntities, item); return this.handleArr(row.attendanceStaffStatEntities, item);
} else { } else {
if (item <= timestampToTime(new Date(), 3)) { if (item < timestampToTime(new Date(), 3)) {
return "正常"; return "正常";
} else { } else {
return "--"; return "--";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment