mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
884 B
Plaintext
32 lines
884 B
Plaintext
<view
|
|
wx:if="{{ show }}"
|
|
class="custom-class van-notice-bar {{ hasRightIcon ? 'van-notice-bar--within-icon' : '' }}"
|
|
style="color: {{ color }};background-color: {{ backgroundColor }}"
|
|
bind:tap="onTap"
|
|
>
|
|
<view wx:if="{{ leftIcon }}" class="van-notice-bar__left-icon">
|
|
<image src="{{ leftIcon }}" />
|
|
</view>
|
|
<view class="van-notice-bar__content-wrap">
|
|
<view class="van-notice-bar__content" animation="{{ animationData }}">
|
|
{{ text }}
|
|
</view>
|
|
</view>
|
|
|
|
<block wx:if="{{ mode }}">
|
|
<van-icon
|
|
wx:if="{{ mode === 'closeable' }}"
|
|
class="van-notice-bar__right-icon"
|
|
name="close"
|
|
bindtap="_handleButtonClick"
|
|
/>
|
|
<navigator
|
|
wx:if="{{ mode === 'link' }}"
|
|
url="{{ url }}"
|
|
open-type="{{ openType }}"
|
|
>
|
|
<van-icon class="van-notice-bar__right-icon" name="arrow" />
|
|
</navigator>
|
|
</block>
|
|
</view>
|