This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0

修正一处笔误

old
宇天 2019-09-20 11:38:42 +08:00
parent efbd5dd1d6
commit 7a533024b6
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ export default class DatePicker {
if (last.month < min.month) { if (last.month < min.month) {
last.month = min.month last.month = min.month
} else if (last.month === min.month) { } else if (last.month === min.month) {
if (last.day < max.day) { if (last.day < min.day) {
last.day = min.day last.day = min.day
} }
} }