fix:面授课路径图学员状态查询及状态显示

This commit is contained in:
wyx
2023-01-13 14:53:13 +08:00
parent 8ca735a03d
commit d6bc7af3fc
2 changed files with 2 additions and 2 deletions

View File

@@ -632,7 +632,7 @@ export default {
customRender: (text) => {
return (
<div class="racona">
<span>{text.record.signStatus ? "正常" : text.record.signStatus == null ? "-" : "异常"}</span>
<span>{text.record.signStatus ? "正常" : text.record.leaveStatus ? "异常" : text.record.signStatus == null ? "-" : "异常"}</span>
</div>
);
},

View File

@@ -575,7 +575,7 @@ export default {
customRender: (text) => {
return (
<div class="racona">
<span>{text.record.signStatus ? "正常" : text.record.signStatus == null ? "-" : "异常"}</span>
<span>{text.record.signStatus ? "正常" : text.record.leaveStatus ? "异常" : text.record.signStatus == null ? "-" : "异常"}</span>
</div>
);
},