fix: support preview video (#3594)

This commit is contained in:
Mondo 2020-09-17 22:15:05 +08:00 committed by GitHub
parent 0bc07ecce1
commit eca7dae310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 1 deletions

View File

@ -60,4 +60,4 @@
<slot />
</view>
</view>
</view>
</view>

View File

@ -193,6 +193,27 @@ VantComponent({
},
});
},
// fix: accept 为 video 时不能展示视频
onPreviewVideo: function (event) {
if (!this.data.previewFullImage) return;
var index = event.currentTarget.dataset.index;
var lists = this.data.lists;
wx.previewMedia({
sources: lists
.filter(function (item) {
return item.isVideo;
})
.map(function (item) {
item.type = 'video';
item.url = item.url || item.path;
return item;
}),
current: index,
fail: function () {
wx.showToast({ title: '预览视频失败', icon: 'none' });
},
});
},
onClickPreview(event) {
const { index } = event.currentTarget.dataset;

View File

@ -21,6 +21,16 @@
data-index="{{ index }}"
bind:tap="onPreviewImage"
/>
<video
wx:elif="{{ item.isVideo }}"
src="{{item.url || item.path}}"
autoplay="{{item.autoplay}}"
class="van-uploader__preview-image"
style="width: {{ utils.addUnit(previewSize) }}; height: {{ utils.addUnit(previewSize) }};"
data-index="{{ index }}"
bind:tap="onPreviewVideo"
>
</video>
<view
wx:else
class="van-uploader__file"