diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index d8d0668ad4..34c7143994 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -1803,6 +1803,8 @@ export default { } else { if (this.hourFormat == '12' && h !== 12 && this.pm) { h += 12; + } else if (this.hourFormat == '12' && h == 12 && !this.pm) { + h = 0; } return { hour: h, minute: m, second: s };