index.wxml 836 B

123456789101112131415161718
  1. <view wx:if="{{ show }}" class="zan-noticebar {{ hasRightIcon ? 'zan-noticebar--within-icon' : '' }}" style="color: {{ color }};background-color: {{ backgroundColor }}; padding: {{ paddingTop }}px 10px;">
  2. <view wx:if="{{ leftIcon }}" class="zan-noticebar__left-icon">
  3. <image class="image" src="{{ leftIcon }}" />
  4. </view>
  5. <view class="zan-noticebar__content-wrap">
  6. <view class="zan-noticebar__content" animation="{{ animationData }}">
  7. {{ text }}
  8. </view>
  9. </view>
  10. <block wx:if="{{ mode }}">
  11. <zan-icon wx:if="{{ mode === 'closeable' }}" class="zan-noticebar__right-icon" type="close" bindtap="_handleButtonClick" />
  12. <navigator wx:if="{{ mode === 'link' }}" url="{{ url }}" open-type="{{ openType }}">
  13. <zan-icon class="zan-noticebar__right-icon" type="arrow" />
  14. </navigator>
  15. </block>
  16. </view>