mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(Uploader): incorrect default size and loading style (#3317)
This commit is contained in:
parent
b4cfcceca8
commit
82b9356315
@ -138,6 +138,6 @@
|
||||
&__loading {
|
||||
width: @uploader-loading-icon-size;
|
||||
height: @uploader-loading-icon-size;
|
||||
color: @uploader-loading-icon-color;
|
||||
color: @uploader-loading-icon-color !important;
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ VantComponent({
|
||||
beforeRead: null,
|
||||
previewSize: {
|
||||
type: null,
|
||||
value: 90,
|
||||
value: 80,
|
||||
},
|
||||
name: {
|
||||
type: [Number, String],
|
||||
@ -78,9 +78,7 @@ VantComponent({
|
||||
? isImageFile(item)
|
||||
: item.isImage,
|
||||
deletable:
|
||||
typeof item.deletable === 'undefined'
|
||||
? true
|
||||
: item.deletable,
|
||||
typeof item.deletable === 'undefined' ? true : item.deletable,
|
||||
}));
|
||||
this.setData({ lists, isInCount: lists.length < maxCount });
|
||||
},
|
||||
|
@ -34,8 +34,8 @@
|
||||
class="van-uploader__mask"
|
||||
>
|
||||
<van-icon wx:if="{{ item.status === 'failed' }}" name="warning-o" class="van-uploader__mask-icon" />
|
||||
<van-loading wx:else class="van-uploader__loading" />
|
||||
<text wx:if="{{ item.message }}" class="van-uploader__upload-text">{{ item.message }}</text>
|
||||
<van-loading wx:else custom-class="van-uploader__loading" />
|
||||
<text wx:if="{{ item.message }}" class="van-uploader__mask-message">{{ item.message }}</text>
|
||||
</view>
|
||||
<view
|
||||
wx:if="{{ deletable && item.deletable }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user