首页概览初步

This commit is contained in:
禺狨
2023-03-20 12:12:33 +08:00
parent 0614f198e4
commit e4ffae20b2
13 changed files with 610 additions and 8 deletions

View File

@@ -111,7 +111,7 @@ export const CoursePage = () => {
title: "是否显示",
dataIndex: "is_show",
render: (is_show: number) => (
<span className={is_show === 1 ? "c-green" : "c-red"}>
<span className={is_show === 1 ? "c-success" : "c-red"}>
{is_show === 1 ? "· 显示" : "· 隐藏"}
</span>
),