mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
parent
f1d055fb65
commit
074d49c28f
5
.prettierrc
Normal file
5
.prettierrc
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"printWidth": 90,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none"
|
||||
}
|
@ -175,17 +175,12 @@ VantComponent({
|
||||
},
|
||||
|
||||
onPreviewImage(event) {
|
||||
if (!this.data.previewFullImage) return;
|
||||
|
||||
const { index } = event.currentTarget.dataset;
|
||||
const { lists } = this.data;
|
||||
const item = lists[index];
|
||||
|
||||
this.$emit('click-preview', {
|
||||
url: item.url || item.path,
|
||||
...this.getDetail(index),
|
||||
});
|
||||
|
||||
if (!this.data.previewFullImage) return;
|
||||
|
||||
wx.previewImage({
|
||||
urls: lists
|
||||
.filter((item) => item.isImage)
|
||||
@ -196,5 +191,15 @@ VantComponent({
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
onClickPreview(event) {
|
||||
const { index } = event.currentTarget.dataset;
|
||||
const item = this.data.lists[index];
|
||||
|
||||
this.$emit('click-preview', {
|
||||
...item,
|
||||
...this.getDetail(index),
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@ -5,9 +5,11 @@
|
||||
<!-- 预览样式 -->
|
||||
<view
|
||||
wx:if="{{ previewImage }}"
|
||||
wx:for="{{ lists }}"
|
||||
wx:for="{{ lists }}"
|
||||
wx:key="index"
|
||||
class="van-uploader__preview"
|
||||
data-index="{{ index }}"
|
||||
bindtap="onClickPreview"
|
||||
>
|
||||
<image
|
||||
wx:if="{{ item.isImage }}"
|
||||
@ -32,7 +34,7 @@
|
||||
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" />
|
||||
<van-loading wx:else class="van-uploader__loading" />
|
||||
<text wx:if="{{ item.message }}" class="van-uploader__upload-text">{{ item.message }}</text>
|
||||
</view>
|
||||
<van-icon
|
||||
|
Loading…
x
Reference in New Issue
Block a user