feat(Uploader): add sizeType Attribute (#2563)

* feat(Uploader): add sizeType Attribute

* feat(Uploader): Uploader组件sizeType 类型修改

* feat(Uploader): fix defaultd value
This commit is contained in:
Lindy 2019-12-23 10:13:53 +08:00 committed by rex
parent 448bf72598
commit 2dbabe7bf3
2 changed files with 7 additions and 0 deletions

View File

@ -167,6 +167,7 @@ uploadFilePromise(fileName, chooseResult) {
|-----------|-----------|-----------|-----------|-----------|
| name | 标识符,可以在回调函数的第二项参数中获取 | *string \| number* | - | - |
| accept | 接受的文件类型, 可选值为`all` `image` `file` | *string* | `image` | - |
| sizeType | 所选的图片的尺寸, 当`accept``image`类型时设置所选图片的尺寸可选值为`original` `compressed`| *string[]* | `['original','compressed']` | - |
| preview-size | 预览图和上传区域的尺寸,默认单位为`px` | *string \| number* | `80px` | - |
| preview-image | 是否在上传完成后展示预览图 | *boolean* | `true` | - |
| preview-full-image | 是否在点击预览图后展示全屏图片预览 | *boolean* | `true` | - |

View File

@ -19,6 +19,10 @@ VantComponent({
type: String,
value: 'image'
},
sizeType: {
type: Array,
value: ['original', 'compressed']
},
capture: {
type: Array,
value: ['album', 'camera']
@ -80,6 +84,7 @@ VantComponent({
multiple,
maxSize,
accept,
sizeType,
lists,
useBeforeRead = false // 是否定义了 beforeRead
} = this.data;
@ -92,6 +97,7 @@ VantComponent({
wx.chooseImage({
count: multiple ? (newMaxCount > 9 ? 9 : newMaxCount) : 1, // 最多可以选择的数量如果不支持多选则数量为1
sourceType: capture, // 选择图片的来源,相册还是相机
sizeType,
success: resolve,
fail: reject
});