|
|
@@ -1,9 +1,9 @@
|
|
|
import { useAjax } from "@/Hook/useAjax"
|
|
|
import React, { useEffect, useState } from "react"
|
|
|
-import { AreaChartOutlined, SearchOutlined, UserOutlined } from "@ant-design/icons"
|
|
|
+import { AreaChartOutlined, SearchOutlined } from "@ant-design/icons"
|
|
|
|
|
|
import { GetExternalUserRepeatByCorpListApiProps, getSelectQcUuidStatisticPageListApi } from "../../API/home"
|
|
|
-import { Avatar, Button, Card, Checkbox, Divider, Input, InputNumber, Select, Space, Table, Typography } from "antd";
|
|
|
+import { Button, Card, Checkbox, Divider, Input, InputNumber, Select, Space, Table, Typography, Image } from "antd";
|
|
|
import SearchBox from "../../components/searchBox";
|
|
|
import CorpDetails from "./corpDetails";
|
|
|
import CorpUserDetails from "./corpUserDetails";
|
|
|
@@ -100,7 +100,7 @@ const UuidTem: React.FC<{ getCorpAllList: { label: string, value: string }[] }>
|
|
|
width: 180,
|
|
|
render: (text: any, record: any) => {
|
|
|
return <Space>
|
|
|
- <Avatar shape="square" size={20} icon={<UserOutlined />} src={record?.avatar} />
|
|
|
+ <Image src={record?.avatar} style={{ width: 20, borderRadius: 4 }} />
|
|
|
<Text>{text}</Text>
|
|
|
</Space>
|
|
|
}
|