diff --git a/src/components/drawers/project/ProjectFaceStu.vue b/src/components/drawers/project/ProjectFaceStu.vue index 15e9bc37..1d0a3405 100644 --- a/src/components/drawers/project/ProjectFaceStu.vue +++ b/src/components/drawers/project/ProjectFaceStu.vue @@ -632,7 +632,7 @@ export default { customRender: (text) => { return (
- {text.record.signStatus ? "正常" : text.record.signStatus == null ? "-" : "异常"} + {text.record.signStatus ? "正常" : text.record.leaveStatus ? "异常" : text.record.signStatus == null ? "-" : "异常"}
); }, diff --git a/src/components/drawers/router/RouterFaceStu.vue b/src/components/drawers/router/RouterFaceStu.vue index 6d6e8c8a..0708be9c 100644 --- a/src/components/drawers/router/RouterFaceStu.vue +++ b/src/components/drawers/router/RouterFaceStu.vue @@ -575,7 +575,7 @@ export default { customRender: (text) => { return (
- {text.record.signStatus ? "正常" : text.record.signStatus == null ? "-" : "异常"} + {text.record.signStatus ? "正常" : text.record.leaveStatus ? "异常" : text.record.signStatus == null ? "-" : "异常"}
); },