From 3881f820de703a18ed7df3ae2447fb150eff88e6 Mon Sep 17 00:00:00 2001 From: oyv1cent <641027967@qq.com> Date: Sat, 25 Aug 2018 13:20:15 +0800 Subject: [PATCH] fix --- src/components/date-picker/picker.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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){