toast.wxml 838 B

12345678910111213141516171819202122232425
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'toast'}}"/>
  5. <view class="page-body">
  6. <view class="btn-area">
  7. <view class="body-view">
  8. <button type="default" bindtap="toast1Tap">点击弹出默认toast</button>
  9. </view>
  10. <view class="body-view">
  11. <button type="default" bindtap="toast2Tap">点击弹出设置duration的toast</button>
  12. </view>
  13. <view class="body-view">
  14. <button type="default" bindtap="toast3Tap">点击弹出显示loading的toast</button>
  15. </view>
  16. <view class="body-view">
  17. <button type="default" bindtap="hideToast">点击隐藏toast</button>
  18. </view>
  19. </view>
  20. </view>
  21. <template is="foot" />
  22. </view>