You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
624 B

<view class="zan-actionsheet {{ show ? 'zan-actionsheet--show' : '' }}">
<view class="mask-class zan-actionsheet__mask" bindtap="onMaskClick">
<view class="container-class zan-actionsheet__container">
<view wx:for="{{ actions }}" class="icon-wrap" wx:key="{{ index }}-{{ item.name }}">
<button class="icon-wrap" open-type="{{ item.openType }}" data-index="{{ index }}" bindtap='handleBtnClick'>
<image class="icon-classname" src="{{ item.icon }}" mode='scaleToFill' />
<view class="txt-classname">{{ item.name }}</view>
</button>
</view>
</view>
</view>
</view>