alert.wxml 429 B

1234567
  1. <view class="tui-alert-box {{show?'tui-alert-show':''}}">
  2. <view class="tui-alert-content" style="font-size:{{size}}rpx;color:{{color}}">
  3. <slot></slot>
  4. </view>
  5. <view class="tui-alert-btn" style="color:{{btnColor}}" hover-class="tui-alert-btn-hover" hover-stay-time="150" catchtap="handleClick">{{btnText}}</view>
  6. </view>
  7. <view class="tui-alert-mask {{show?'tui-alert-mask-show':''}}" catchtap="handleClickCancel"></view>