mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
109 lines
2.9 KiB
Vue
109 lines
2.9 KiB
Vue
<docs>
|
||
---
|
||
order: 6
|
||
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.
|
||
</docs>
|
||
|
||
<template>
|
||
<div>
|
||
<a-upload
|
||
v-model:file-list="fileList"
|
||
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
||
list-type="picture"
|
||
>
|
||
<a-button>
|
||
<upload-outlined></upload-outlined>
|
||
upload
|
||
</a-button>
|
||
</a-upload>
|
||
<br />
|
||
<br />
|
||
<a-upload
|
||
v-model:file-list="fileList1"
|
||
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
||
list-type="picture"
|
||
class="upload-list-inline"
|
||
>
|
||
<a-button>
|
||
<upload-outlined></upload-outlined>
|
||
upload
|
||
</a-button>
|
||
</a-upload>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { UploadOutlined } from '@ant-design/icons-vue';
|
||
import { defineComponent, ref } from 'vue';
|
||
import type { UploadProps } from 'ant-design-vue';
|
||
|
||
export default defineComponent({
|
||
components: {
|
||
UploadOutlined,
|
||
},
|
||
setup() {
|
||
const fileList = ref<UploadProps['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: 'done',
|
||
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
||
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
||
},
|
||
]);
|
||
const fileList1 = ref<UploadProps['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: 'done',
|
||
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
||
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
||
},
|
||
]);
|
||
return {
|
||
fileList,
|
||
fileList1,
|
||
};
|
||
},
|
||
});
|
||
</script>
|
||
<style scoped>
|
||
/* tile uploaded pictures */
|
||
.upload-list-inline :deep(.ant-upload-list-item) {
|
||
float: left;
|
||
width: 200px;
|
||
margin-right: 8px;
|
||
}
|
||
.upload-list-inline :deep(.ant-upload-animate-enter) {
|
||
animation-name: uploadAnimateInlineIn;
|
||
}
|
||
.upload-list-inline :deep(.ant-upload-animate-leave) {
|
||
animation-name: uploadAnimateInlineOut;
|
||
}
|
||
</style>
|