diff --git a/src/components/drawers/project/ProjectEvalManage.vue b/src/components/drawers/project/ProjectEvalManage.vue
index 47cff0b1..fd2b24bf 100644
--- a/src/components/drawers/project/ProjectEvalManage.vue
+++ b/src/components/drawers/project/ProjectEvalManage.vue
@@ -187,6 +187,13 @@ export default {
width: 50,
align: "center",
className: "h head",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentUserNo?text.record.studentUserNo:"-"}
+
+ );
+ },
},
{
title: "姓名",
@@ -195,6 +202,13 @@ export default {
width: 50,
align: "left",
className: "h head",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentName?text.record.studentName:"-"}
+
+ );
+ },
},
{
title: "所在部门",
@@ -203,6 +217,13 @@ export default {
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentDepartName?text.record.studentDepartName:"-"}
+
+ );
+ },
},
{
title: "所在岗位",
@@ -211,6 +232,13 @@ export default {
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentJobName?text.record.studentJobName:"-"}
+
+ );
+ },
},
{
title: "学员关卡",
@@ -222,7 +250,7 @@ export default {
customRender: () => {
return (
- {props.levelName}
+ {props.levelName?props.levelName:'-'}
);
},
@@ -234,6 +262,13 @@ export default {
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.endStudyTime?text.record.endStudyTime:"-"}
+
+ );
+ },
},
{
@@ -258,6 +293,13 @@ export default {
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.PDFstatus?text.record.PDFstatus:"-"}
+
+ );
+ },
}
]
return columns;
diff --git a/src/components/drawers/router/RouterEvaluationManage.vue b/src/components/drawers/router/RouterEvaluationManage.vue
index 77ad9f00..cf6cd5fa 100644
--- a/src/components/drawers/router/RouterEvaluationManage.vue
+++ b/src/components/drawers/router/RouterEvaluationManage.vue
@@ -188,6 +188,13 @@
width: 50,
align: "center",
className: "h head",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentUserNo?text.record.studentUserNo:"-"}
+
+ );
+ },
},
{
title: "姓名",
@@ -196,6 +203,13 @@
width: 50,
align: "left",
className: "h head",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentName?text.record.studentName:"-"}
+
+ );
+ },
},
{
title: "所在部门",
@@ -204,6 +218,13 @@
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentDepartName?text.record.studentDepartName:"-"}
+
+ );
+ },
},
{
title: "所在岗位",
@@ -212,6 +233,13 @@
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.studentJobName?text.record.studentJobName:"-"}
+
+ );
+ },
},
{
title: "学员关卡",
@@ -223,7 +251,7 @@
customRender: () => {
return (
- {props.levelName}
+ {props.levelName?props.levelName:'-'}
);
},
@@ -235,6 +263,13 @@
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.endStudyTime?text.record.endStudyTime:"-"}
+
+ );
+ },
},
{
@@ -259,6 +294,13 @@
width: 60,
align: "center",
className: "h",
+ customRender: (text) => {
+ return (
+
+ {text.record.PDFstatus?text.record.PDFstatus:"-"}
+
+ );
+ },
}
]