actionsheet.wxml 1.1 KB

12345678910111213141516171819202122
  1. <view class="page" data-weui-theme="{{theme}}">
  2. <view class="page__hd">
  3. <view class="page__title">ActionSheet</view>
  4. <view class="page__desc">弹出式菜单</view>
  5. </view>
  6. <view class="page__bd">
  7. <view class="weui-btn-area">
  8. <!-- <button class="weui-btn" type="default" bindtap="open">原生 ActionSheet</button> -->
  9. <button class="weui-btn" type="default" bindtap="openDialog">模拟 ActionSheet</button>
  10. </view>
  11. </view>
  12. <mp-actionSheet bindactiontap="btnClick" show="{{showDialog}}" actions="{{groups}}" title="这是一个标题,可以为一行或者两行。">
  13. <view slot="{{'actionSlot' + '1'}}" class="custom-action">
  14. <view class="custom-action_desc">前往图中包含的小程序:</view>
  15. <view class="custom-action_content">
  16. <mp-icon icon="qr-code" size="{{20}}"></mp-icon>
  17. <text class="custom-action_name">小程序名称</text>
  18. <mp-icon icon="arrow" size="{{12}}"></mp-icon>
  19. </view>
  20. </view>
  21. </mp-actionSheet>
  22. </view>