资源视频列表图标替换

This commit is contained in:
禺狨 2023-03-31 09:58:58 +08:00
parent 350e6f5897
commit 3a1be89041

View File

@ -7,7 +7,6 @@ import type { ColumnsType } from "antd/es/table";
import { dateFormat } from "../../../utils/index";
import { TreeCategory, DurationText, PerButton } from "../../../compenents";
import { UploadVideoButton } from "../../../compenents/upload-video-button";
import icon from "../../../assets/images/commen/icon-video.png";
const { confirm } = Modal;
@ -48,7 +47,13 @@ const ResourceVideosPage = () => {
dataIndex: "name",
render: (text: string) => (
<div className="d-flex">
<img style={{ width: 16, height: 16 }} src={icon} alt="" />
<i
className="iconfont icon-icon-video"
style={{
fontSize: 16,
color: "rgba(0,0,0,0.3)",
}}
/>
<span className="ml-8">{text}</span>
</div>
),