index.wxml 470 B

1234567891011121314151617
  1. <view class="overlay" wx:if='{{show}}' style="'z-index':{{zIndex}}">
  2. <view class="toast">
  3. <image class="icon" mode="widthFix" src="{{cdn_url}}/images/icon/{{type=='loading'? 'loading.gif':(type + '.png')}}" />
  4. <view class='toast-con'>
  5. <text>
  6. {{message}}
  7. </text>
  8. </view>
  9. <view class="toast-footer" wx:if="{{ type !== 'loading' }}">
  10. <button bindtap="clear">
  11. 确定
  12. </button>
  13. </view>
  14. </view>
  15. </view>