mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 17:59:57 +08:00
21 lines
633 B
Markdown
21 lines
633 B
Markdown
|
## zh-CN
|
||
|
|
||
|
使用 `itemRender` ,我们可以集成 react-dnd 来实现对上传列表拖拽排序。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
By using `itemRender`, we can integrate upload with react-dnd to implement drag sorting of uploadList.
|
||
|
|
||
|
```css
|
||
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item {
|
||
|
border-top: 2px dashed rgba(0, 0, 0, 0);
|
||
|
border-bottom: 2px dashed rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item.drop-over-downward {
|
||
|
border-bottom-color: #1890ff;
|
||
|
}
|
||
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item.drop-over-upward {
|
||
|
border-top-color: #1890ff;
|
||
|
}
|
||
|
```
|