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