index.wxml 814 B

123456789101112131415
  1. <view class="i-class i-alert {{'i-alert-'+type}} {{showIcon?'i-alert-with-icon':''}} {{desc?'i-alert-with-desc':''}}" wx:if="{{!closed}}">
  2. <view wx:if="{{ showIcon }}" class="i-alert-icon">
  3. <i-icon type="prompt" wx:if="{{ type === 'info' }}" size="{{desc?24:16}}"></i-icon>
  4. <i-icon type="success" wx:if="{{ type === 'success' }}" size="{{desc?24:16}}"></i-icon>
  5. <i-icon type="warning" wx:if="{{ type === 'warning' }}" size="{{desc?24:16}}"></i-icon>
  6. <i-icon type="delete" wx:if="{{ type === 'error' }}" size="{{desc?24:16}}"></i-icon>
  7. </view>
  8. <slot></slot>
  9. <view class="i-alert-desc">
  10. <slot name="desc"></slot>
  11. </view>
  12. <view class="i-alert-close" wx:if="{{ closable }}" bindtap="handleTap">
  13. <i-icon type="close"></i-icon>
  14. </view>
  15. </view>