water_sh/components/comImg/index.wxml

34 lines
900 B
Plaintext
Raw Permalink Normal View History

2025-04-15 15:48:57 +08:00
<!--components/comImg/index.wxml-->
<image
src="{{src}}"
wx:if="{{type=='img'}}"
width="{{width}}"
height="{{height}}"
catch:tap="showData"
style="width: {{width}};height: {{height}};"
mode="{{mode}}" />
<image src="../../assets/play.png" wx:else
catch:tap="showData"
mode="{{mode}}"
style="width: {{width}};height: {{height}};"/>
<!-- <van-dialog
use-slot
title="查看"
show="{{ show }}"
confirm-button-open-type="getUserInfo"
bind:close="onClose"
bind:getuserinfo="getUserInfo"
>
<view style="max-height: 60vh;overflow-y: scroll;padding: 20rpx 0;">
</view>
</van-dialog> -->
<view class="overlay" wx:if="{{show}}">
<image src="{{src}}" mode="" wx:if="{{type=='img'}}" style="width:100%;height:100%"/>
<video src="{{src}}" wx:else style="width:100%;height:100%"></video>
</view>