2020-06-09 16:17:23 +08:00

13 lines
838 B
Plaintext

<view bind:tap="onClick" class="custom-class van-notice-bar {{hasRightIcon?'van-notice-bar--within-icon':''}} {{scrollable?'':'noscrollable'}}" style="color: {{color}}; background-color: {{backgroundColor}};" wx:if="{{show}}">
<image class="van-notice-bar__left-icon" src="{{leftIcon}}" wx:if="{{leftIcon}}"></image>
<view class="van-notice-bar__content-wrap">
<view animation="{{animationData}}" class="van-notice-bar__content">
<rich-text nodes="{{text}}"></rich-text>
</view>
</view>
<van-icon bind:tap="onClickIcon" class="van-notice-bar__right-icon" name="cross" wx:if="{{mode==='closeable'}}"></van-icon>
<navigator openType="{{openType}}" url="{{url}}" wx:if="{{mode==='link'}}">
<van-icon class="van-notice-bar__right-icon" name="arrow"></van-icon>
</navigator>
</view>