mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
5e1c65e52a
commit
808b057980
@ -199,6 +199,15 @@ VantComponent({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onPreviewFile(event: WechatMiniprogram.TouchEvent) {
|
||||||
|
const { index } = event.currentTarget.dataset;
|
||||||
|
|
||||||
|
wx.openDocument({
|
||||||
|
filePath: this.data.lists[index].url,
|
||||||
|
showMenu: true,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
onClickPreview(event) {
|
onClickPreview(event) {
|
||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
const item: File = this.data.lists[index];
|
const item: File = this.data.lists[index];
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="{{ computed.sizeStyle({ previewSize }) }}"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
bind:tap="onPreviewImage"
|
bindtap="onPreviewImage"
|
||||||
/>
|
/>
|
||||||
<video
|
<video
|
||||||
wx:elif="{{ item.isVideo }}"
|
wx:elif="{{ item.isVideo }}"
|
||||||
@ -31,13 +31,15 @@
|
|||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="{{ computed.sizeStyle({ previewSize }) }}"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
bind:tap="onPreviewVideo"
|
bindtap="onPreviewVideo"
|
||||||
>
|
>
|
||||||
</video>
|
</video>
|
||||||
<view
|
<view
|
||||||
wx:else
|
wx:else
|
||||||
class="van-uploader__file"
|
class="van-uploader__file"
|
||||||
style="{{ computed.sizeStyle({ previewSize }) }}"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
|
data-index="{{ index }}"
|
||||||
|
bindtap="onPreviewFile"
|
||||||
>
|
>
|
||||||
<van-icon name="description" class="van-uploader__file-icon" />
|
<van-icon name="description" class="van-uploader__file-icon" />
|
||||||
<view class="van-uploader__file-name van-ellipsis">{{ item.name || item.url }}</view>
|
<view class="van-uploader__file-name van-ellipsis">{{ item.name || item.url }}</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user