From 2c2d2fd4652696bc5bbca568035a4dc5f6720d45 Mon Sep 17 00:00:00 2001 From: msidolphin Date: Thu, 18 Apr 2019 00:10:16 +0800 Subject: [PATCH] fix --- src/components/input-number/input-number.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/input-number/input-number.vue b/src/components/input-number/input-number.vue index 336581c2..485f0d78 100644 --- a/src/components/input-number/input-number.vue +++ b/src/components/input-number/input-number.vue @@ -275,12 +275,15 @@ this.focused = true; this.$emit('on-focus', event); }, - blur () { + blur (e) { this.focused = false; this.$emit('on-blur'); if (!findComponentUpward(this, ['DatePicker', 'TimePicker', 'Cascader', 'Search'])) { this.dispatch('FormItem', 'on-form-blur', this.currentValue); } + if (!this.activeChange) { + this.change(e) + } }, keyDown (e) { if (e.keyCode === 38) {