[Doc] Upadloer: update demo title (#3605)

This commit is contained in:
neverland 2019-06-22 15:48:26 +08:00 committed by GitHub
parent dea0d28361
commit a0d2efd9bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 12 deletions

View File

@ -169,7 +169,7 @@ export default {
},
{
path: '/uploader',
title: 'Uploader 图片上传'
title: 'Uploader 文件上传'
}
]
},

View File

@ -8,6 +8,7 @@
<van-uploader
v-model="fileList"
multiple
accept="*"
/>
</demo-block>
@ -43,16 +44,16 @@
export default {
i18n: {
'zh-CN': {
upload: '上传图片',
preview: '图片预览',
upload: '上传文件',
preview: '文件预览',
maxCount: '限制上传数量',
beforeRead: '上传前校验',
uploadStyle: '自定义上传样式',
invalidType: '请上传 jpg 格式图片'
},
'en-US': {
upload: 'Upload Image',
preview: 'Preview Image',
upload: 'Upload File',
preview: 'Preview File',
maxCount: 'Max Count',
beforeRead: 'Before Read',
uploadStyle: 'Upload Style',

View File

@ -26,7 +26,7 @@ export default {
};
```
### Preview Image
### Preview File
```html
<van-uploader v-model="fileList" multiple />

View File

@ -14,7 +14,7 @@ exports[`renders demo correctly 1`] = `
<div class="van-uploader">
<div class="van-uploader__wrapper">
<div class="van-uploader__upload"><i class="van-icon van-icon-plus van-uploader__upload-icon">
<!----></i><input multiple="multiple" type="file" accept="image/*" class="van-uploader__input"></div>
<!----></i><input multiple="multiple" type="file" accept="*" class="van-uploader__input"></div>
</div>
</div>
</div>
@ -31,7 +31,7 @@ exports[`renders demo correctly 1`] = `
<div class="van-uploader__wrapper">
<div class="van-uploader__input-wrapper"><button class="van-button van-button--primary van-button--normal"><i class="van-icon van-icon-photo van-button__icon">
<!----></i><span class="van-button__text">
上传图片
上传文件
</span></button><input type="file" accept="image/*" class="van-uploader__input"></div>
</div>
</div>

View File

@ -1,4 +1,4 @@
# Uploader 图片上传
# Uploader 文件上传
### 引入
@ -12,7 +12,7 @@ Vue.use(Uploader);
### 基础用法
图片上传完毕后会触发`after-read`回调函数,获取到对应的`file`对象
文件上传完毕后会触发`after-read`回调函数,获取到对应的`file`对象
```html
<van-uploader :after-read="afterRead" />
@ -126,12 +126,12 @@ export default {
| preview-image | 是否在上传完成后展示预览图 | `Boolean` | `true` | 2.0.0 |
| preview-size | 预览图和上传区域的尺寸,单位为`px` | `String | Number` | `80px` | 2.0.0 |
| multiple | 是否开启图片多选,部分安卓机型不支持 | `Boolean` | `false` | 2.0.0 |
| disabled | 是否禁用图片上传 | `Boolean` | `false` | - |
| disabled | 是否禁用文件上传 | `Boolean` | `false` | - |
| capture | 图片选取模式,可选值为`camera`(直接调起摄像头) | `String` | - | 2.0.0 |
| before-read | 文件读取前的回调函数,返回`false`可终止文件读取,支持返回`Promise` | `Function` | - | - |
| after-read | 文件读取完成后的回调函数 | `Function` | - | - |
| max-size | 文件大小限制,单位为`byte` | `Number` | - | - |
| max-count | 图片上传数量限制 | `Number` | - | 2.0.0 |
| max-count | 文件上传数量限制 | `Number` | - | 2.0.0 |
| result-type | 文件读取结果类型,可选值为`text` | `String` | `dataUrl` | - |
| upload-text | 上传区域文字提示 | `String` | - | 2.0.0 |