From 33e1725b0ab81c245fe7bd25fb472fac9738cd16 Mon Sep 17 00:00:00 2001 From: landluck Date: Wed, 14 Dec 2022 10:25:36 +0800 Subject: [PATCH] fix(uploader): fix preview video index error (#5142) --- packages/uploader/index.ts | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/packages/uploader/index.ts b/packages/uploader/index.ts index 04b437eb..e5805cba 100644 --- a/packages/uploader/index.ts +++ b/packages/uploader/index.ts @@ -186,14 +186,25 @@ VantComponent({ const { index } = event.currentTarget.dataset; const { lists } = this.data as { lists: File[] }; + const sources: WechatMiniprogram.MediaSource[] = []; + + const current = lists.reduce((sum, cur, curIndex) => { + if (!isVideoFile(cur)) { + return sum; + } + + sources.push({ ...cur, type: 'video' }); + + if (curIndex < index) { + sum++; + } + + return sum; + }, 0); + wx.previewMedia({ - sources: lists - .filter((item) => isVideoFile(item)) - .map((item) => ({ - ...item, - type: 'video', - })), - current: index, + sources, + current, fail() { wx.showToast({ title: '预览视频失败', icon: 'none' }); },