--fix bug

This commit is contained in:
yuping
2023-01-18 01:14:27 +08:00
parent 2b85aaa07c
commit 90437c8175

View File

@@ -2600,12 +2600,11 @@ const columns2 = [
key: "courseSource",
width: "12%",
align: "center",
customRender: (text) => {
customRender: ({record:{courseName,routerName}}) => {
return (
<div class="racona">
<span>
{" "}
{text.record.courseSource ? text.record.courseSource : "-"}
{courseName || routerName || "开课"}
</span>
</div>
);