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.
17 lines
640 B
17 lines
640 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">
|
|
<picker-view indicator-style="height: 50px;" range-key='{{ key }}' style="width: 100%; height: 300px;"
|
|
value="{{defaultPickData}}" bindchange="bindChange">
|
|
<picker-view-column>
|
|
<view wx:for="{{listData}}" wx:key='index' style="line-height: 50px">{{item.name || item[key]}}
|
|
</view>
|
|
</picker-view-column>
|
|
</picker-view>
|
|
</view>
|
|
</view>
|
|
</view>
|