@@ -65,6 +65,7 @@ class DatePickerItem extends Component<void, Props, State> {
65
65
this . touchY = 0 ; // 保存touchstart的pageY
66
66
this . translateY = 0 ; // 容器偏移的距离
67
67
this . currentIndex = MIDDLE_INDEX ; // 滑动中当前日期的索引
68
+ this . moveDateCount = 0 ; // 一次滑动移动了多少个时间
68
69
69
70
this . state = {
70
71
translateY : MIDDLE_Y ,
@@ -180,9 +181,9 @@ class DatePickerItem extends Component<void, Props, State> {
180
181
_moveToNext ( direction ) {
181
182
const date = this . state . dates [ MIDDLE_INDEX ] ;
182
183
const { max, min } = this . props ;
183
- if ( direction === - 1 && date . getTime ( ) < min . getTime ( ) ) {
184
+ if ( direction === - 1 && date . getTime ( ) < min . getTime ( ) && this . moveDateCount ) {
184
185
this . _updateDates ( 1 ) ;
185
- } else if ( direction === 1 && date . getTime ( ) > max . getTime ( ) ) {
186
+ } else if ( direction === 1 && date . getTime ( ) > max . getTime ( ) && this . moveDateCount ) {
186
187
this . _updateDates ( - 1 ) ;
187
188
}
188
189
@@ -220,6 +221,7 @@ class DatePickerItem extends Component<void, Props, State> {
220
221
event . pageY ;
221
222
222
223
this . translateY = this . state . translateY ;
224
+ this . moveDateCount = 0 ;
223
225
}
224
226
225
227
@@ -244,6 +246,7 @@ class DatePickerItem extends Component<void, Props, State> {
244
246
245
247
// 检测是否更新日期列表
246
248
if ( this . _checkIsUpdateDates ( direction , translateY ) ) {
249
+ this . moveDateCount = direction > 0 ? this . moveDateCount + 1 : this . moveDateCount - 1 ;
247
250
this . _updateDates ( direction ) ;
248
251
}
249
252
0 commit comments