mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
48 lines
915 B
Plaintext
48 lines
915 B
Plaintext
<wxs src="../wxs/utils.wxs" module="utils" />
|
|
|
|
<view
|
|
class="custom-class {{ utils.bem('image', { round })}}"
|
|
style="{{ style }}"
|
|
bind:tap="onClick"
|
|
>
|
|
<image
|
|
wx:if="{{ !error }}"
|
|
class="image-class van-image__img"
|
|
mode="{{ mode }}"
|
|
src="{{ src }}"
|
|
lazy-load="{{ lazyLoad }}"
|
|
show-menu-by-longpress="{{ showMenuByLongpress }}"
|
|
bind:load="onLoad"
|
|
bind:error="onError"
|
|
/>
|
|
|
|
<view
|
|
wx:if="{{ loading && showLoading }}"
|
|
class="loading-class van-image__loading"
|
|
>
|
|
<slot
|
|
wx:if="{{ useLoadingSlot }}"
|
|
name="loading"
|
|
/>
|
|
<van-icon
|
|
wx:else
|
|
name="photo-o"
|
|
size="22"
|
|
/>
|
|
</view>
|
|
<view
|
|
wx:if="{{ error && showError }}"
|
|
class="error-class van-image__error"
|
|
>
|
|
<slot
|
|
wx:if="{{ useErrorSlot }}"
|
|
name="error"
|
|
/>
|
|
<van-icon
|
|
wx:else
|
|
name="warning-o"
|
|
size="22"
|
|
/>
|
|
</view>
|
|
</view>
|