mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(uploader): fix preview video index error (#5142)
This commit is contained in:
parent
91a12bbaaf
commit
33e1725b0a
@ -186,14 +186,25 @@ VantComponent({
|
|||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const { lists } = this.data as { lists: File[] };
|
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({
|
wx.previewMedia({
|
||||||
sources: lists
|
sources,
|
||||||
.filter((item) => isVideoFile(item))
|
current,
|
||||||
.map((item) => ({
|
|
||||||
...item,
|
|
||||||
type: 'video',
|
|
||||||
})),
|
|
||||||
current: index,
|
|
||||||
fail() {
|
fail() {
|
||||||
wx.showToast({ title: '预览视频失败', icon: 'none' });
|
wx.showToast({ title: '预览视频失败', icon: 'none' });
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user