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
642 B
15 lines
642 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>
|
|
<view class="footer" catchtap="btn_fn">
|
|
<scroll-view class="scroll_box" scroll-y scroll-into-view="{{'a'+defaultPickData}}">
|
|
<view class="{{idx==index? 'scroll_box_item is_ok' : 'scroll_box_item'}}" wx:for="{{listData}}" wx:key='id' style="line-height: 50px" id="{{'a'+index}}" bindtap="to_ok" data-index="{{index}}">
|
|
{{item.name || item[key]}}
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
</view>
|