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 lines
1.9 KiB
1 lines
1.9 KiB
<view class="uni-datetime-picker"><view data-event-opts="{{[['tap',[['tiggerTimePicker',['$event']]]]]}}" bindtap="__e"><block wx:if="{{$slots.default}}"><slot></slot></block><block wx:else><view class="uni-datetime-picker-timebox uni-datetime-picker-flex">{{''+time}}<block wx:if="{{!time}}"><view class="uni-datetime-picker-time">选择日期</view></block><view class="uni-datetime-picker-down-arrow"></view></view></block></view><block wx:if="{{visible}}"><view data-event-opts="{{[['tap',[['initTimePicker',['$event']]]]]}}" class="uni-datetime-picker-mask" bindtap="__e"></view></block><block wx:if="{{visible}}"><view class="uni-datetime-picker-popup"><view class="uni-title">设置日期</view><picker-view class="uni-datetime-picker-view" indicator-style="{{indicatorStyle}}" value="{{ymd}}" data-event-opts="{{[['change',[['bindDateChange',['$event']]]]]}}" bindchange="__e"><picker-view-column class="uni-datetime-picker-hyphen"><block wx:for="{{years}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="uni-datetime-picker-item">{{item}}</view></block></picker-view-column><picker-view-column class="uni-datetime-picker-hyphen"><block wx:for="{{months}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="uni-datetime-picker-item">{{item<10?'0'+item:item}}</view></block></picker-view-column><picker-view-column><block wx:for="{{days}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="uni-datetime-picker-item">{{item<10?'0'+item:item}}</view></block></picker-view-column></picker-view><view class="uni-datetime-picker-btn"><view class="uni-datetime-picker-btn-group"><view data-event-opts="{{[['tap',[['tiggerTimePicker',['$event']]]]]}}" class="uni-datetime-picker-cancel" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['setTime',['$event']]]]]}}" bindtap="__e">确定</view></view></view></view></block></view> |