mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 12:56:45 +08:00
feat:增加面授课成绩导入
This commit is contained in:
@@ -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: "考试成绩",
|
||||
|
||||
Reference in New Issue
Block a user