讲师管理bug

This commit is contained in:
zhangsir
2025-01-08 15:31:06 +08:00
parent cad23a1599
commit 1d3a700ced
14 changed files with 84 additions and 55 deletions

View File

@@ -134,8 +134,8 @@
<span class="line"></span>
<span style="font-weight:600;">基本信息</span>
<a-descriptions style="margin-top:16px" bordered :column="2" :contentStyle="rowCenter" :labelStyle="rowCenter">
<a-descriptions-item label="审批编号">{{formParam?.approvalNumber||'-'}}</a-descriptions-item>
<a-descriptions-item label="培训发生组织">{{formParam?.trainOrgName||'-'}}</a-descriptions-item>
<a-descriptions-item label="审批编号"><div style="user-select:text">{{formParam?.approvalNumber||'-'}}</div></a-descriptions-item>
<a-descriptions-item label="培训发生组织"><div style="user-select:text">{{formParam?.trainOrgName||'-'}}</div></a-descriptions-item>
<a-descriptions-item label="汇总时间" >{{formParam?.summaryTime||'-'}}</a-descriptions-item>
<a-descriptions-item label="汇总金额">{{formParam?.summaryTotal?formParam?.summaryTotal+'元':'-'}}</a-descriptions-item>
<a-descriptions-item label="提交时间">{{formParam?.approvalSubmitTime||'-'}}</a-descriptions-item>
@@ -457,6 +457,7 @@
key: 'trainOrgName',
ellipsis: true, align: "center",
width: 200,
customCell:()=>{return{style:{userSelect: 'text'}}}
},
{
title: '汇总时间 ',
@@ -899,16 +900,23 @@
key: 'name',
ellipsis: true,
align: "center",
width: 120,
},
{
title: '讲师工号 ',
dataIndex: 'userNo',
key: 'userNo',
ellipsis: true,
align: "center",
width: 120,
width: 180,
customRender: (value) => {
return (
<div style="user-select:text">
{value.record?.name} / {value.record?.userNo}
</div>
);
},
},
// {
// title: '讲师工号 ',
// dataIndex: 'userNo',
// key: 'userNo',
// ellipsis: true,
// align: "center",
// width: 120,
// },
{
title: '课程名称 ',
dataIndex: 'courseName',
@@ -916,6 +924,7 @@
ellipsis: true,
align: "center",
width: 200,
customCell:()=>{return{style:{userSelect: 'text'}}}
},
{
title: '培训发生组织',
@@ -924,6 +933,7 @@
ellipsis: true,
align: "center",
width: 120,
customCell:()=>{return{style:{userSelect: 'text'}}}
},
{