Files
venue_wx/component/actionSheet/actionSheet.wxml
2020-06-21 16:27:58 +08:00

8 lines
338 B
Plaintext

<!--component/actionSheet/actionSheet.wxml-->
<view class='popup-box' catchtouchmove='unMove' catchtap='cancel'>
<view class='body'>
<view class='cell' wx:for="{{value}}" wx:key="{{index}}" catchtap='click' data-index='{{index}}'>{{item.label}}</view>
<view class='cell cancel' catchtap='cancel'>取消</view>
</view>
</view>