讲师管理修改

This commit is contained in:
zhangsir
2025-01-13 16:25:18 +08:00
parent 2e1b057f62
commit 7f0d9613b4
12 changed files with 32 additions and 28 deletions

View File

@@ -333,7 +333,7 @@ const columns = [
customRender: (value) => {
return (
<div>
{value.record.score?Number(value.record.score).toFixed(0)==0?'-':Number(value.record.score).toFixed(0)+'分' : '-'}
{value.record.score?Number(value.record.score).toFixed(0)==0?'-':Number(value.record.score).toFixed(2)+'分' : '-'}
</div>
)
}

View File

@@ -421,7 +421,7 @@ const columns = [
customRender: (value) => {
return (
<div>
{value.record.score?Number(value.record.score).toFixed(0)==0?'-':Number(value.record.score).toFixed(0)+'分' : '-'}
{value.record.score?Number(value.record.score).toFixed(0)==0?'-':Number(value.record.score).toFixed(2)+'分' : '-'}
</div>
)
}
@@ -683,18 +683,19 @@ const config = () => {
.list{
display: flex;
align-items: center;
background-color: #f5f5f5;
min-width: 260px;
// background-color: #f5f5f5;
border: 1px solid #1e98d7;
min-width: 286px;
padding: 20px 10px;
color: #ffffff;
// color: #ffffff;
border-radius:6px;
margin-right: 20px;
margin-bottom: 20px;
position: relative;
.icon{
position: absolute;
right: -10px;
top: -10px;
right: 3px;
top: 3px;
width:24px;
height:24px;
cursor: pointer;
@@ -713,16 +714,17 @@ const config = () => {
width: 35%;
min-width: 86px;
text-align:right;
margin-right:30px;
color: rgba(116, 120, 141, 0.603921568627451);
margin-right:20px;
// color: rgba(116, 120, 141, 0.603921568627451);
color: #333333;
.text{
margin-top:20px;
}
}
.right{
color: #646C9A;
color: #333333;
.org{
max-width: 136px;
max-width: 144px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@@ -733,12 +735,13 @@ const config = () => {
}
}
.active{
background-color: #4ea6ff;
// background-color: #4ea6ff;
background-color: rgba(174, 220, 246, 0.64);
.left{
color: #ffffff;
color: #333333;
}
.right{
color: #ffffff;
color: #333333;
}
}
}