2016-08-21 15:12:56 +08:00
|
|
|
|
## Upload 上传
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2016-08-21 15:12:56 +08:00
|
|
|
|
通过点击或者拖拽上传文件
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
### 点击上传
|
2016-08-21 15:12:56 +08:00
|
|
|
|
|
2017-12-15 13:50:54 +08:00
|
|
|
|
:::demo 通过 slot 你可以传入自定义的上传按钮类型和文字提示。可通过设置`limit`和`on-exceed`来限制上传文件的个数和定义超出限制时的行为。可通过设置`before-remove`来阻止文件移除操作。
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```html
|
2016-09-09 14:11:07 +08:00
|
|
|
|
<el-upload
|
2017-01-09 13:30:42 +08:00
|
|
|
|
class="upload-demo"
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2016-09-09 14:11:07 +08:00
|
|
|
|
:on-preview="handlePreview"
|
2016-11-27 14:31:33 +08:00
|
|
|
|
:on-remove="handleRemove"
|
2017-12-15 13:50:54 +08:00
|
|
|
|
:before-remove="beforeRemove"
|
2017-10-12 16:07:50 +08:00
|
|
|
|
multiple
|
|
|
|
|
:limit="3"
|
|
|
|
|
:on-exceed="handleExceed"
|
2016-12-31 13:10:46 +08:00
|
|
|
|
:file-list="fileList">
|
2016-07-27 14:15:02 +08:00
|
|
|
|
<el-button size="small" type="primary">点击上传</el-button>
|
2017-02-08 19:05:34 +08:00
|
|
|
|
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
</el-upload>
|
2016-08-20 18:27:37 +08:00
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2016-11-27 14:31:33 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
fileList: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
|
|
|
|
|
};
|
|
|
|
|
},
|
2016-08-20 18:27:37 +08:00
|
|
|
|
methods: {
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
console.log(file, fileList);
|
|
|
|
|
},
|
|
|
|
|
handlePreview(file) {
|
|
|
|
|
console.log(file);
|
2017-10-12 16:07:50 +08:00
|
|
|
|
},
|
|
|
|
|
handleExceed(files, fileList) {
|
|
|
|
|
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
|
2017-12-12 17:39:39 +08:00
|
|
|
|
},
|
2017-12-15 13:50:54 +08:00
|
|
|
|
beforeRemove(file, fileList) {
|
|
|
|
|
return this.$confirm(`确定移除 ${ file.name }?`);
|
2016-08-20 18:27:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```
|
2016-08-21 15:12:56 +08:00
|
|
|
|
:::
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
### 用户头像上传
|
|
|
|
|
|
2017-02-20 11:34:59 +08:00
|
|
|
|
使用 `before-upload` 限制用户上传的图片格式和大小。
|
2017-02-13 00:44:57 +08:00
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2017-01-03 11:34:44 +08:00
|
|
|
|
```html
|
2017-01-09 13:30:42 +08:00
|
|
|
|
<el-upload
|
2017-02-13 00:44:57 +08:00
|
|
|
|
class="avatar-uploader"
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2017-02-13 00:44:57 +08:00
|
|
|
|
:show-file-list="false"
|
2017-03-20 12:45:00 +08:00
|
|
|
|
:on-success="handleAvatarSuccess"
|
2017-02-13 00:44:57 +08:00
|
|
|
|
:before-upload="beforeAvatarUpload">
|
|
|
|
|
<img v-if="imageUrl" :src="imageUrl" class="avatar">
|
|
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
2017-01-09 13:30:42 +08:00
|
|
|
|
</el-upload>
|
2017-02-24 14:30:27 +08:00
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.avatar-uploader .el-upload {
|
|
|
|
|
border: 1px dashed #d9d9d9;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.avatar-uploader .el-upload:hover {
|
2017-10-01 20:16:16 +08:00
|
|
|
|
border-color: #409EFF;
|
2017-02-24 14:30:27 +08:00
|
|
|
|
}
|
|
|
|
|
.avatar-uploader-icon {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #8c939d;
|
|
|
|
|
width: 178px;
|
|
|
|
|
height: 178px;
|
|
|
|
|
line-height: 178px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.avatar {
|
|
|
|
|
width: 178px;
|
|
|
|
|
height: 178px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2017-02-15 00:59:17 +08:00
|
|
|
|
imageUrl: ''
|
2017-02-13 00:44:57 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2017-03-20 12:45:00 +08:00
|
|
|
|
handleAvatarSuccess(res, file) {
|
2017-02-15 00:59:17 +08:00
|
|
|
|
this.imageUrl = URL.createObjectURL(file.raw);
|
2017-02-13 00:44:57 +08:00
|
|
|
|
},
|
2017-02-15 00:59:17 +08:00
|
|
|
|
beforeAvatarUpload(file) {
|
|
|
|
|
const isJPG = file.type === 'image/jpeg';
|
|
|
|
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
|
|
|
|
|
|
|
|
|
if (!isJPG) {
|
|
|
|
|
this.$message.error('上传头像图片只能是 JPG 格式!');
|
|
|
|
|
}
|
|
|
|
|
if (!isLt2M) {
|
|
|
|
|
this.$message.error('上传头像图片大小不能超过 2MB!');
|
|
|
|
|
}
|
|
|
|
|
return isJPG && isLt2M;
|
2017-02-13 00:44:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2017-01-03 11:34:44 +08:00
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
### 照片墙
|
|
|
|
|
|
2017-02-20 11:34:59 +08:00
|
|
|
|
使用 `list-type` 属性来设置文件列表的样式。
|
2017-02-08 19:05:34 +08:00
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2017-02-08 19:05:34 +08:00
|
|
|
|
```html
|
|
|
|
|
<el-upload
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2017-02-13 00:44:57 +08:00
|
|
|
|
list-type="picture-card"
|
2017-02-20 11:34:59 +08:00
|
|
|
|
:on-preview="handlePictureCardPreview"
|
2017-02-15 00:59:17 +08:00
|
|
|
|
:on-remove="handleRemove">
|
2017-02-13 00:44:57 +08:00
|
|
|
|
<i class="el-icon-plus"></i>
|
2017-02-08 19:05:34 +08:00
|
|
|
|
</el-upload>
|
2018-01-28 14:44:53 +08:00
|
|
|
|
<el-dialog :visible.sync="dialogVisible">
|
2017-02-20 11:34:59 +08:00
|
|
|
|
<img width="100%" :src="dialogImageUrl" alt="">
|
|
|
|
|
</el-dialog>
|
2017-02-08 19:05:34 +08:00
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2017-02-20 11:34:59 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
dialogImageUrl: '',
|
|
|
|
|
dialogVisible: false
|
|
|
|
|
};
|
|
|
|
|
},
|
2017-02-08 19:05:34 +08:00
|
|
|
|
methods: {
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
console.log(file, fileList);
|
|
|
|
|
},
|
2017-02-20 11:34:59 +08:00
|
|
|
|
handlePictureCardPreview(file) {
|
|
|
|
|
this.dialogImageUrl = file.url;
|
|
|
|
|
this.dialogVisible = true;
|
2017-02-08 19:05:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
### 图片列表缩略图
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```html
|
2016-08-20 18:27:37 +08:00
|
|
|
|
<el-upload
|
2017-02-13 00:44:57 +08:00
|
|
|
|
class="upload-demo"
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2016-08-20 18:27:37 +08:00
|
|
|
|
:on-preview="handlePreview"
|
2016-08-21 15:12:56 +08:00
|
|
|
|
:on-remove="handleRemove"
|
2017-02-20 11:34:59 +08:00
|
|
|
|
:file-list="fileList2"
|
2017-02-13 00:44:57 +08:00
|
|
|
|
list-type="picture">
|
|
|
|
|
<el-button size="small" type="primary">点击上传</el-button>
|
|
|
|
|
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
</el-upload>
|
2016-08-20 18:27:37 +08:00
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2016-11-27 14:31:33 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2017-02-20 11:34:59 +08:00
|
|
|
|
fileList2: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
|
2016-11-27 14:31:33 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
2016-08-20 18:27:37 +08:00
|
|
|
|
methods: {
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
console.log(file, fileList);
|
|
|
|
|
},
|
|
|
|
|
handlePreview(file) {
|
|
|
|
|
console.log(file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```
|
2016-08-21 15:12:56 +08:00
|
|
|
|
:::
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2017-02-20 11:34:59 +08:00
|
|
|
|
### 上传文件列表控制
|
|
|
|
|
|
|
|
|
|
通过 `on-change` 钩子函数来对列表进行控制
|
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2017-02-20 11:34:59 +08:00
|
|
|
|
```html
|
|
|
|
|
<el-upload
|
|
|
|
|
class="upload-demo"
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2017-02-20 11:34:59 +08:00
|
|
|
|
:on-change="handleChange"
|
|
|
|
|
:file-list="fileList3">
|
|
|
|
|
<el-button size="small" type="primary">点击上传</el-button>
|
|
|
|
|
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
fileList3: [{
|
|
|
|
|
name: 'food.jpeg',
|
2018-04-03 11:50:20 +08:00
|
|
|
|
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
|
2017-02-20 11:34:59 +08:00
|
|
|
|
}, {
|
|
|
|
|
name: 'food2.jpeg',
|
2018-04-03 11:50:20 +08:00
|
|
|
|
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'
|
2017-02-20 11:34:59 +08:00
|
|
|
|
}]
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleChange(file, fileList) {
|
|
|
|
|
this.fileList3 = fileList.slice(-3);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
2017-02-13 00:44:57 +08:00
|
|
|
|
### 拖拽上传
|
2016-07-27 14:15:02 +08:00
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```html
|
2016-08-20 18:27:37 +08:00
|
|
|
|
<el-upload
|
2017-02-13 00:44:57 +08:00
|
|
|
|
class="upload-demo"
|
|
|
|
|
drag
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2017-03-20 12:45:00 +08:00
|
|
|
|
multiple>
|
2016-09-07 01:15:39 +08:00
|
|
|
|
<i class="el-icon-upload"></i>
|
2017-02-13 00:44:57 +08:00
|
|
|
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
<div class="el-upload__tip" slot="tip">只能上传jpg/png文件,且不超过500kb</div>
|
|
|
|
|
</el-upload>
|
2017-02-13 00:44:57 +08:00
|
|
|
|
```
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
### 手动上传
|
|
|
|
|
|
2017-12-12 12:45:09 +08:00
|
|
|
|
:::demo
|
2017-02-13 00:44:57 +08:00
|
|
|
|
```html
|
|
|
|
|
<el-upload
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
ref="upload"
|
2017-03-03 09:02:08 +08:00
|
|
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
2017-02-13 00:44:57 +08:00
|
|
|
|
:on-preview="handlePreview"
|
|
|
|
|
:on-remove="handleRemove"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
:auto-upload="false">
|
|
|
|
|
<el-button slot="trigger" size="small" type="primary">选取文件</el-button>
|
|
|
|
|
<el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">上传到服务器</el-button>
|
|
|
|
|
<div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
|
|
|
|
|
</el-upload>
|
2016-08-20 18:27:37 +08:00
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2016-11-27 14:31:33 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
fileList: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
|
|
|
|
|
};
|
|
|
|
|
},
|
2016-08-20 18:27:37 +08:00
|
|
|
|
methods: {
|
2017-03-04 16:38:20 +08:00
|
|
|
|
submitUpload() {
|
|
|
|
|
this.$refs.upload.submit();
|
|
|
|
|
},
|
2016-08-20 18:27:37 +08:00
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
console.log(file, fileList);
|
|
|
|
|
},
|
|
|
|
|
handlePreview(file) {
|
|
|
|
|
console.log(file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2016-07-27 14:15:02 +08:00
|
|
|
|
```
|
2017-02-13 00:44:57 +08:00
|
|
|
|
:::
|
2016-08-21 15:12:56 +08:00
|
|
|
|
|
2016-12-15 15:15:46 +08:00
|
|
|
|
### Attribute
|
2016-07-27 14:15:02 +08:00
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
|
|
|
|
|---------- |-------------- |---------- |-------------------------------- |-------- |
|
2017-10-12 16:07:50 +08:00
|
|
|
|
| action | 必选参数,上传的地址 | string | — | — |
|
|
|
|
|
| headers | 设置上传的请求头部 | object | — | — |
|
|
|
|
|
| multiple | 是否支持多选文件 | boolean | — | — |
|
|
|
|
|
| data | 上传时附带的额外参数 | object | — | — |
|
|
|
|
|
| name | 上传的文件字段名 | string | — | file |
|
2016-09-09 14:11:07 +08:00
|
|
|
|
| with-credentials | 支持发送 cookie 凭证信息 | boolean | — | false |
|
2017-02-13 00:44:57 +08:00
|
|
|
|
| show-file-list | 是否显示已上传文件列表 | boolean | — | true |
|
2017-03-09 12:19:24 +08:00
|
|
|
|
| drag | 是否启用拖拽上传 | boolean | — | false |
|
2017-10-12 16:07:50 +08:00
|
|
|
|
| accept | 接受上传的[文件类型](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept)(thumbnail-mode 模式下此参数无效)| string | — | — |
|
2018-05-11 19:00:20 +08:00
|
|
|
|
| on-preview | 点击文件列表中已上传的文件时的钩子 | function(file) | — | — |
|
2017-10-12 16:07:50 +08:00
|
|
|
|
| on-remove | 文件列表移除文件时的钩子 | function(file, fileList) | — | — |
|
|
|
|
|
| on-success | 文件上传成功时的钩子 | function(response, file, fileList) | — | — |
|
|
|
|
|
| on-error | 文件上传失败时的钩子 | function(err, file, fileList) | — | — |
|
|
|
|
|
| on-progress | 文件上传时的钩子 | function(event, file, fileList) | — | — |
|
|
|
|
|
| on-change | 文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用 | function(file, fileList) | — | — |
|
|
|
|
|
| before-upload | 上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise 且被 reject,则停止上传。 | function(file) | — | — |
|
2017-12-12 17:39:39 +08:00
|
|
|
|
| before-remove | 删除文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止上传。| function(file, fileList) | — | — |
|
2017-02-13 00:44:57 +08:00
|
|
|
|
| list-type | 文件列表的类型 | string | text/picture/picture-card | text |
|
|
|
|
|
| auto-upload | 是否在选取文件后立即进行上传 | boolean | — | true |
|
2017-10-16 14:07:24 +08:00
|
|
|
|
| file-list | 上传的文件列表, 例如: [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}] | array | — | [] |
|
2017-03-09 14:30:00 +08:00
|
|
|
|
| http-request | 覆盖默认的上传行为,可以自定义上传的实现 | function | — | — |
|
2017-04-21 11:57:30 +08:00
|
|
|
|
| disabled | 是否禁用 | boolean | — | false |
|
2017-10-12 16:07:50 +08:00
|
|
|
|
| limit | 最大允许上传个数 | number | — | — |
|
|
|
|
|
| on-exceed | 文件超出个数限制时的钩子 | function(files, fileList) | — | - |
|
2016-11-08 19:59:23 +08:00
|
|
|
|
|
2018-07-18 15:39:04 +08:00
|
|
|
|
### Slot
|
|
|
|
|
| name | 说明 |
|
|
|
|
|
|------|--------|
|
|
|
|
|
| trigger | 触发文件选择框的内容 |
|
|
|
|
|
| tip | 提示说明文字 |
|
|
|
|
|
|
2016-12-15 15:15:46 +08:00
|
|
|
|
### Methods
|
2016-11-08 19:59:23 +08:00
|
|
|
|
| 方法名 | 说明 | 参数 |
|
2018-09-20 16:50:27 +08:00
|
|
|
|
|----------- |-------------- | -- |
|
2017-05-08 20:21:24 +08:00
|
|
|
|
| clearFiles | 清空已上传的文件列表(该方法不支持在 before-upload 中调用) | — |
|
2018-09-20 16:50:27 +08:00
|
|
|
|
| abort | 取消上传请求 | ( file: fileList 中的 file 对象 ) |
|
|
|
|
|
| submit | 手动上传文件列表 | — |
|