mirror of
https://github.com/PlayEdu/backend
synced 2025-06-13 02:26:20 +08:00
可见列表优化
This commit is contained in:
parent
dc616d4829
commit
862ee4e5ae
@ -95,8 +95,7 @@ const ResourceCoursewarePage = () => {
|
|||||||
const columns: ColumnsType<DataType> = [
|
const columns: ColumnsType<DataType> = [
|
||||||
{
|
{
|
||||||
title: "课件名称",
|
title: "课件名称",
|
||||||
dataIndex: "name",
|
render: (_, record: any) => (
|
||||||
render: (name: string) => (
|
|
||||||
<div className="d-flex">
|
<div className="d-flex">
|
||||||
<i
|
<i
|
||||||
className="iconfont icon-icon-file"
|
className="iconfont icon-icon-file"
|
||||||
@ -105,7 +104,9 @@ const ResourceCoursewarePage = () => {
|
|||||||
color: "rgba(0,0,0,0.3)",
|
color: "rgba(0,0,0,0.3)",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<span className="ml-8">{name}</span>
|
<span className="ml-8">
|
||||||
|
{record.name}.{record.extension}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user