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.
 

13 lines
542 B

<view class="region_picker" wx:if='{{isShowPicker}}' bindtap="cancel">
<view class="box" catchtap="btn_fn">
<view class="header">
<text catchtap="cancel">取消</text>
<text catchtap="confirm">确定</text>
</view>
<scroll-view class="footer" catchtap="btn_fn" scroll-y scroll-into-view="{{'a'+equipment_idx}}">
<view wx:for="{{listData}}" class="{{idx==index?'item is_item':'item'}}" id="{{'a'+index}}" bindtap="bindChange" data-index="{{index}}" wx:key="id">
{{item.name}}
</view>
</scroll-view>
</view>
</view>