fix:外部考试学员成绩显示问题

This commit is contained in:
wyx
2023-02-25 22:07:46 +08:00
parent 4acc13ee4d
commit 6a40173961
2 changed files with 2 additions and 2 deletions

View File

@@ -300,7 +300,7 @@
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.score?text.record.score:"-"}</span>
<span> {text.record.score?text.record.score<0?"-":text.record.score:"-"}</span>
</div>
);
},