feat(Uploader): add uploader disabled style (#5628)

This commit is contained in:
Lindy 2020-02-06 17:15:24 +08:00 committed by GitHub
parent 8cab62025c
commit 613ff25035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 34 additions and 2 deletions

View File

@ -790,6 +790,7 @@
@uploader-mask-message-line-height: 14px;
@uploader-loading-icon-size: 22px;
@uploader-loading-icon-color: @white;
@uploader-disabled-opacity: @disabled-opacity;
// Sku
@sku-item-background-color: @background-color;

View File

@ -44,6 +44,11 @@ export default {
}
};
```
### Disabled
```html
<van-uploader disabled />
```
### Upload Status

View File

@ -53,6 +53,14 @@ export default {
};
```
### 禁用
通过`disabled`属性禁用文件上传
```html
<van-uploader disabled />
```
### 上传状态
通过`status`属性可以标识上传状态,`uploading`表示上传中,`failed`表示上传失败,`done`表示上传完成(从 2.4.7 版本开始支持)

View File

@ -8,6 +8,10 @@
<van-uploader v-model="fileList" multiple accept="*" />
</demo-block>
<demo-block :title="$t('disabled')">
<van-uploader :after-read="afterRead" disabled />
</demo-block>
<demo-block v-if="!isWeapp" :title="$t('status')">
<van-uploader v-model="statusFileList" :after-read="afterReadFailed" />
</demo-block>
@ -38,6 +42,7 @@ export default {
failed: '上传失败',
upload: '上传文件',
preview: '文件预览',
disabled: '禁用',
maxCount: '限制上传数量',
uploading: '上传中...',
beforeRead: '上传前校验',
@ -49,6 +54,7 @@ export default {
failed: 'Failed',
upload: 'Upload File',
preview: 'Preview File',
disabled: 'Disabled',
maxCount: 'Max Count',
uploading: 'Uploading...',
beforeRead: 'Before Read',

View File

@ -360,7 +360,7 @@ export default createComponent({
render() {
return (
<div class={bem()}>
<div class={bem('wrapper')}>
<div class={bem('wrapper', { disabled: this.disabled })}>
{this.genPreviewList()}
{this.genUpload()}
</div>

View File

@ -7,6 +7,10 @@
&__wrapper {
display: flex;
flex-wrap: wrap;
&--disabled {
opacity: @uploader-disabled-opacity;
}
}
&__input {

View File

@ -32,6 +32,14 @@ exports[`renders demo correctly 1`] = `
</div>
</div>
</div>
<div>
<div class="van-uploader">
<div class="van-uploader__wrapper van-uploader__wrapper--disabled">
<div class="van-uploader__upload"><i class="van-icon van-icon-plus van-uploader__upload-icon">
<!----></i><input type="file" accept="image/*" disabled="disabled" class="van-uploader__input"></div>
</div>
</div>
</div>
<div>
<div class="van-uploader">
<div class="van-uploader__wrapper">