fix:面授课-开课-学员管理-作业成绩显示负数问题

This commit is contained in:
wyx
2023-03-27 21:19:30 +08:00
parent ab539a28f0
commit a25f2e6697

View File

@@ -3885,7 +3885,7 @@ export default defineComponent({
customRender: ({ record }) => { customRender: ({ record }) => {
return ( return (
<div class="racona"> <div class="racona">
{record.workScore === -2 ? ( {record.workScore === -2 || record.workScore === -1 || record.workScore < 0? (
"-" "-"
) : record.workScore ? ( ) : record.workScore ? (
<span>{record.workScore}</span> <span>{record.workScore}</span>