修改学习路径图管理在线完成时间问题

This commit is contained in:
nisen
2023-10-26 16:31:16 +08:00
parent 542e8b26a0
commit e4ee1cdb4a

View File

@@ -310,7 +310,7 @@ export default {
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.lastStudyTime?text.record.lastStudyTime:"-"}</span>
<span> {text.record.lastStudyTime && text.record.finishStatus == 1 ?text.record.lastStudyTime:"-"}</span>
</div>
);
},