fix:外部考试管理;未完成考试的学员【查看答卷】按钮禁用

工号字段宽度加宽
This commit is contained in:
caozc
2023-02-28 00:27:04 +08:00
parent 9510a8604d
commit 9b472e8a6e

View File

@@ -190,7 +190,7 @@ export default {
title: "工号", title: "工号",
dataIndex: "studentCode", dataIndex: "studentCode",
key: "studentCode", key: "studentCode",
width: 60, width: 120,
align: "center", align: "center",
className: "h head", className: "h head",
customRender: (text) => { customRender: (text) => {
@@ -305,7 +305,7 @@ export default {
align: "center", align: "center",
ellipsis: true, ellipsis: true,
className: "h", className: "h",
customRender: ({record:{finishStatus}}) => ({1:'进行中',0:'未开始',9:'已完成'}[finishStatus] || '未开始'), customRender: ({record:{status}}) => ({1:'进行中',0:'未开始',9:'已完成'}[status] || '未开始'),
}, },
{ {
title: "操作", title: "操作",
@@ -318,14 +318,14 @@ export default {
customRender: (text) => { customRender: (text) => {
return ( return (
<div class="racona"> <div class="racona">
<a {text.record.status == '0' ? "查看答卷" :
onClick={()=>{ <a onClick={()=>{
state.studentKid = text.record.studentKid; state.studentKid = text.record.studentKid;
state.datasource = text.record; state.datasource = text.record;
state.CAvisible = true; state.CAvisible = true;
}}> }}> 查看答卷 </a>
查看答卷 }
</a>
</div> </div>
); );
}, },