|
|
|
---
|
|
|
|
order: 8
|
|
|
|
title:
|
|
|
|
zh-CN: 图片列表样式
|
|
|
|
en-US: Pictures with list style
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
上传文件为图片,可展示本地缩略图。`IE8/9` 不支持浏览器本地缩略图展示([Ref](https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL)),可以写 `thumbUrl` 属性来代替。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
If uploaded file is a picture, the thumbnail can be shown. `IE8/9` do not support local thumbnail show. Please use `thumbUrl` instead.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Upload, Button } from 'antd';
|
|
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
|
|
|
|
|
|
const fileList = [
|
|
|
|
{
|
|
|
|
uid: '-1',
|
|
|
|
name: 'xxx.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '-2',
|
|
|
|
name: 'yyy.png',
|
|
|
|
status: 'error',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default () => (
|
|
|
|
<>
|
|
|
|
<Upload
|
|
|
|
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
|
|
|
listType="picture"
|
|
|
|
defaultFileList={[...fileList]}
|
|
|
|
>
|
|
|
|
<Button icon={<UploadOutlined />}>Upload</Button>
|
|
|
|
</Upload>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<Upload
|
|
|
|
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
|
|
|
listType="picture"
|
|
|
|
defaultFileList={[...fileList]}
|
|
|
|
className="upload-list-inline"
|
|
|
|
>
|
|
|
|
<Button icon={<UploadOutlined />}>Upload</Button>
|
|
|
|
</Upload>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
```css
|
|
|
|
/* tile uploaded pictures */
|
|
|
|
.upload-list-inline .ant-upload-list-item {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-list-inline [class*='-upload-list-rtl'] .ant-upload-list-item {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
```
|