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) {
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),
});
},
},
});

View File

@ -8,6 +8,8 @@
wx:for="{{ lists }}"
wx:key="index"
class="van-uploader__preview"
data-index="{{ index }}"
bindtap="onClickPreview"
>
<image
wx:if="{{ item.isImage }}"