|
@@ -135,53 +135,80 @@ export const formDetailSchema: BasicColumn[] = [
|
|
dataIndex: 'classTime7',
|
|
dataIndex: 'classTime7',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '正课(含调顶课时)',
|
|
title: '正课(含调顶课时)',
|
|
dataIndex: 'classTime8',
|
|
dataIndex: 'classTime8',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '晚辅(含调顶课时)',
|
|
title: '晚辅(含调顶课时)',
|
|
dataIndex: 'classTime9',
|
|
dataIndex: 'classTime9',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '顶课',
|
|
title: '顶课',
|
|
dataIndex: 'classTime10',
|
|
dataIndex: 'classTime10',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '调课',
|
|
title: '调课',
|
|
dataIndex: 'classTime11',
|
|
dataIndex: 'classTime11',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '总课时',
|
|
title: '总课时',
|
|
dataIndex: 'allClassTime',
|
|
dataIndex: 'allClassTime',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 80,
|
|
width: 80,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '课时费(元)',
|
|
title: '课时费(元)',
|
|
dataIndex: 'classTimeAmount',
|
|
dataIndex: 'classTimeAmount',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 100,
|
|
width: 100,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '外聘教师超课时费(元)',
|
|
title: '外聘教师超课时费(元)',
|
|
dataIndex: 'beyondClassTimeAmount',
|
|
dataIndex: 'beyondClassTimeAmount',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 100,
|
|
width: 100,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '总金额(元)',
|
|
title: '总金额(元)',
|
|
dataIndex: 'totalAmount',
|
|
dataIndex: 'totalAmount',
|
|
align: 'left',
|
|
align: 'left',
|
|
width: 110,
|
|
width: 110,
|
|
|
|
+ customRender: ({ text }) => {
|
|
|
|
+ return text === 0 ? '' : text;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
];
|
|
];
|