feat:增加面授课成绩导入

This commit is contained in:
lixg
2023-01-04 15:04:21 +08:00
parent 9b3f9e47ee
commit 78119e4093
5 changed files with 130 additions and 22 deletions

View File

@@ -2903,16 +2903,38 @@ export default defineComponent({
{
title: "岗位",
width: "15%",
dataIndex: "signstatus",
dataIndex: "studentJobName",
key: "7",
align: "center",
customRender: (text) => {
return (
<div class="racona">
<span>
{text.record.studentJobName
? text.record.studentJobName
: "-"}
</span>
</div>
);
},
},
{
title: "Band",
width: "15%",
dataIndex: "signstatus",
dataIndex: "studentBandDesc",
key: "7",
align: "center",
customRender: (text) => {
return (
<div class="racona">
<span>
{text.record.studentBandDesc
? text.record.studentBandDesc
: "-"}
</span>
</div>
);
},
},
{
title: "报名状态",
@@ -2967,9 +2989,28 @@ export default defineComponent({
{
title: "作业成绩",
width: "15%",
dataIndex: "signstatus",
dataIndex: "workScore",
key: "7",
align: "center",
customRender: ({ record }) => {
switch (String(record.status)) {
case "0":
return (
<span
style={{ color: "#4EA6FF", cursor: "pointer" }}
onClick={() => {
handlJoinStu(record);
}}
>
成绩录入
</span>
);
case "1":
return "-";
case "2":
return "-";
}
},
},
{
title: "考试成绩",