
<view class="toastCp">
  <view class="mask" wx:if="{{show && mask}}"></view>
  <view class="toastContent {{ show ? 'toastCp_show' : 'toastCp_hide' }}">
    <block wx:if="{{ image }}">
      <image class="toastImg" src="{{image}}" style="{{imageStyle}}"></image>
    </block>
    <block wx:if="{{ !image }}">
      <image class="toastImg" wx:if="{{type === 'success'}}" src="/images/icon_complete.png"></image>
      <image class="toastImg" wx:if="{{type === 'warn'}}" src="/images/icon_cash_error.png"> </image>
    </block>
    <text class="toastText">{{tips}}</text>
    <view class="toastPoint" wx:if="{{showLoading}}">
      <text class="pointItem"> </text>
      <text class="pointItem"> </text>
      <text class="pointItem"> </text>
    </view>
  </view>
</view>