diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 7f73dfd0b1..60ab701ad7 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -1793,6 +1793,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 };