mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 13:56:45 +08:00
讲师管理bug
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="org" :title="item?.trainOrgName">{{item?.trainOrgName||'-'}}</div>
|
||||
<div class="text org" :title="item?.summaryTotal">{{item?.summaryTotal||'-'}}</div>
|
||||
<div class="text org" :title="item?.summaryTotal">{{item?.summaryTotal?item?.summaryTotal+'元':'-'}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -388,8 +388,8 @@ const columns = [
|
||||
key: 'studys',
|
||||
align: 'center',
|
||||
width:100,
|
||||
customRender: ({ text })=>{
|
||||
return text||'0'
|
||||
customRender: ({text})=>{
|
||||
return text ? text+'人' : '0人'
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -401,7 +401,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(0)+'分' : '-'}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -412,6 +412,9 @@ const columns = [
|
||||
key: 'levelPay',
|
||||
align: 'center',
|
||||
width:100,
|
||||
customRender: ({text})=>{
|
||||
return text||text==0 ? text+'元' : '-'
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '计划费用',
|
||||
@@ -419,6 +422,9 @@ const columns = [
|
||||
key: 'expense',
|
||||
align: 'center',
|
||||
width:100,
|
||||
customRender: ({text})=>{
|
||||
return text ? text+'元' : '-'
|
||||
}
|
||||
},
|
||||
// {
|
||||
// title: '应发费用',
|
||||
|
||||
Reference in New Issue
Block a user