fix(uploader): emit click-preview for all file type (#3071)

fix #3049
This commit is contained in:
rex 2020-04-26 15:48:23 +08:00 committed by GitHub
parent f1d055fb65
commit 074d49c28f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 9 deletions

5
.prettierrc Normal file
View File

@ -0,0 +1,5 @@
{
"printWidth": 90,
"singleQuote": true,
"trailingComma": "none"
}

View File

@ -175,17 +175,12 @@ VantComponent({
}, },
onPreviewImage(event) { onPreviewImage(event) {
if (!this.data.previewFullImage) return;
const { index } = event.currentTarget.dataset; const { index } = event.currentTarget.dataset;
const { lists } = this.data; const { lists } = this.data;
const item = lists[index]; const item = lists[index];
this.$emit('click-preview', {
url: item.url || item.path,
...this.getDetail(index),
});
if (!this.data.previewFullImage) return;
wx.previewImage({ wx.previewImage({
urls: lists urls: lists
.filter((item) => item.isImage) .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),
});
},
}, },
}); });

View File

@ -5,9 +5,11 @@
<!-- 预览样式 --> <!-- 预览样式 -->
<view <view
wx:if="{{ previewImage }}" wx:if="{{ previewImage }}"
wx:for="{{ lists }}" wx:for="{{ lists }}"
wx:key="index" wx:key="index"
class="van-uploader__preview" class="van-uploader__preview"
data-index="{{ index }}"
bindtap="onClickPreview"
> >
<image <image
wx:if="{{ item.isImage }}" wx:if="{{ item.isImage }}"
@ -32,7 +34,7 @@
class="van-uploader__mask" class="van-uploader__mask"
> >
<van-icon wx:if="{{ item.status === 'failed' }}" name="warning-o" class="van-uploader__mask-icon" /> <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> <text wx:if="{{ item.message }}" class="van-uploader__upload-text">{{ item.message }}</text>
</view> </view>
<van-icon <van-icon