2018-04-13 08:19:50 +00:00
|
|
|
<cn>
|
|
|
|
#### 已上传的文件列表
|
|
|
|
使用 `defaultFileList` 设置已上传的内容。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Default Files
|
|
|
|
Use `defaultFileList` for uploaded files when page init.
|
|
|
|
</us>
|
|
|
|
|
2019-10-09 10:32:23 +00:00
|
|
|
```tpl
|
2018-04-13 08:19:50 +00:00
|
|
|
<template>
|
2019-09-28 12:45:07 +00:00
|
|
|
<a-upload
|
|
|
|
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
|
|
|
:defaultFileList="defaultFileList"
|
|
|
|
>
|
|
|
|
<a-button> <a-icon type="upload" /> Upload </a-button>
|
2018-04-13 08:19:50 +00:00
|
|
|
</a-upload>
|
|
|
|
</template>
|
|
|
|
<script>
|
2019-09-28 12:45:07 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
defaultFileList: [
|
|
|
|
{
|
|
|
|
uid: '1',
|
|
|
|
name: 'xxx.png',
|
|
|
|
status: 'done',
|
|
|
|
response: 'Server Error 500', // custom error message to show
|
|
|
|
url: 'http://www.baidu.com/xxx.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '2',
|
|
|
|
name: 'yyy.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'http://www.baidu.com/yyy.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '3',
|
|
|
|
name: 'zzz.png',
|
|
|
|
status: 'error',
|
|
|
|
response: 'Server Error 500', // custom error message to show
|
|
|
|
url: 'http://www.baidu.com/zzz.png',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
2018-04-13 08:19:50 +00:00
|
|
|
},
|
2019-09-28 12:45:07 +00:00
|
|
|
methods: {
|
|
|
|
handleChange({ file, fileList }) {
|
|
|
|
if (file.status !== 'uploading') {
|
|
|
|
console.log(file, fileList);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2018-04-13 08:19:50 +00:00
|
|
|
</script>
|
|
|
|
```
|