8 lines
338 B
Plaintext
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>
|