讲师管理bug

This commit is contained in:
zhangsir
2024-12-21 16:13:30 +08:00
parent ceb9c0cf59
commit 9de8eb61d8
11 changed files with 102 additions and 26 deletions

View File

@@ -959,6 +959,9 @@
ellipsis: true,
align: "center",
width: 120,
customRender: ({text}) => {
return text || '-'
}
},
{
title: '基准课酬 ',
@@ -994,9 +997,13 @@
ellipsis: true,
align: "center",
width: 120,
customRender: ({text}) => {
return text || "-";
}
customRender: (value) => {
return (
<div>
{value.record.score?Number(value.record.score).toFixed(0)==0?'-':Number(value.record.score).toFixed(0) : '-'}
</div>
)
}
},
{
title: '课程类型 ',