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.
1 line
1.4 KiB
1 line
1.4 KiB
4 years ago
|
<view class="mpvue-picker _div"><view class="{{['_div',(showPicker)?'pickerMask':'']}}" catchtouchmove="true" data-event-opts="{{[['tap',[['maskClick',['$event']]]]]}}" bindtap="__e"></view><view class="{{['mpvue-picker-content _div',(showPicker)?'mpvue-picker-view-show':'']}}"><view class="mpvue-picker__hd _div" catchtouchmove="true"><view data-event-opts="{{[['tap',[['pickerCancel',['$event']]]]]}}" class="mpvue-picker__action _div" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['pickerConfirm',['$event']]]]]}}" class="mpvue-picker__action _div" style="{{'color:'+(themeColor)+';'}}" bindtap="__e">确定</view></view><picker-view class="mpvue-picker-view" indicator-style="height: 40px;" value="{{pickerValue}}" data-event-opts="{{[['change',[['pickerChange',['$event']]]]]}}" bindchange="__e"><block><picker-view-column><block wx:for="{{provinceDataList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker-item _div">{{item.label}}</view></block></picker-view-column><picker-view-column><block wx:for="{{cityDataList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker-item _div">{{item.label}}</view></block></picker-view-column><picker-view-column><block wx:for="{{areaDataList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker-item _div">{{item.label}}</view></block></picker-view-column></block></picker-view></view></view>
|