fix:修改任务模块状态判断,表格字符无字段添加横线

This commit is contained in:
wyx
2023-01-07 12:27:59 +08:00
parent 3ef6648411
commit 8241cf8c8b
6 changed files with 186 additions and 4 deletions

View File

@@ -203,6 +203,13 @@ export default {
width: 50,
align: "center",
className: "h head",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.studentUserNo?text.record.studentUserNo:"-"}</span>
</div>
);
},
},
{
title: "姓名",
@@ -211,6 +218,13 @@ export default {
width: 50,
align: "center",
className: "h head",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.studentName?text.record.studentName:"-"}</span>
</div>
);
},
},
{
title: "所在部门",
@@ -219,6 +233,13 @@ export default {
width: 60,
align: "center",
className: "h",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.studentDepartName?text.record.studentDepartName:"-"}</span>
</div>
);
},
},
{
title: "所在岗位",
@@ -227,6 +248,13 @@ export default {
width: 60,
align: "center",
className: "h",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.studentJobName?text.record.studentJobName:"-"}</span>
</div>
);
},
},
{
title: "学员关卡",
@@ -250,6 +278,13 @@ export default {
width: 100,
align: "center",
className: "h",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.lastStudyTime?text.record.lastStudyTime:"-"}</span>
</div>
);
},
},
{
title: "任务状态",
@@ -261,7 +296,7 @@ export default {
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.status == 0 ? "未完成" : "已完成"}</span>
<span> {text.record.status == 0 || text.record.status==null ? "未开始" :text.record.status == 1 ?"已完成":"进行中"}</span>
</div>
);
},