This commit is contained in:
kclf
2022-12-06 21:50:17 +08:00
parent 6bd9afb712
commit 8ded8878a3

View File

@@ -3368,11 +3368,33 @@ const columns6 = [
return index + 1; return index + 1;
}, },
}, },
{
title: "创建人",
dataIndex: "name",
key: "name",
width: "10%",
align: "center",
ellipsis: true,
customRender: ({ text }) => {
return text ? text : "-";
},
},
{
title: "教师名称",
dataIndex: "teacher",
key: "teacher",
width: "10%",
align: "center",
ellipsis: true,
customRender: ({ text }) => {
return text ? text : "-";
},
},
{ {
title: "课程名称", title: "课程名称",
dataIndex: "organization", dataIndex: "organization",
key: "organization", key: "organization",
width: "25%", width: "15%",
align: "center", align: "center",
ellipsis: true, ellipsis: true,
customRender: ({ text }) => { customRender: ({ text }) => {
@@ -3383,7 +3405,7 @@ const columns6 = [
title: "场地", title: "场地",
dataIndex: "address", dataIndex: "address",
key: "saddress", key: "saddress",
width: "25%", width: "15%",
align: "center", align: "center",
ellipsis: true, ellipsis: true,
customRender: ({ text }) => { customRender: ({ text }) => {