diff --git a/src/components/date-picker/picker.vue b/src/components/date-picker/picker.vue index 0c321d9d..f15f3aa9 100644 --- a/src/components/date-picker/picker.vue +++ b/src/components/date-picker/picker.vue @@ -318,7 +318,9 @@ if (this.readonly) return; this.isFocused = true; if (e && e.type === 'focus') return; // just focus, don't open yet - this.visible = true; + if(!this.disabled){ + this.visible = true; + } }, handleBlur (e) { if (this.internalFocus){