From 0f88a39e244fccbd01866d9ce907c565e1468d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=81=8F?= Date: Thu, 16 Sep 2021 16:42:31 +0800 Subject: [PATCH] Update cascader.vue --- src/components/cascader/cascader.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/components/cascader/cascader.vue b/src/components/cascader/cascader.vue index b2f6855f..8fd0ff35 100644 --- a/src/components/cascader/cascader.vue +++ b/src/components/cascader/cascader.vue @@ -171,7 +171,8 @@ currentValue: this.value || [], query: '', validDataStr: '', - isLoadedChildren: false // #950 + isLoadedChildren: false, // #950 + isValueNull: false // hack:解决 value 置为 null 时,$emit:input [] 而不是 null }; }, computed: { @@ -438,11 +439,17 @@ this.$emit('on-visible-change', val); }, value (val) { - this.currentValue = val; - if (!val.length) this.selected = []; + if (val === null) this.isValueNull = true; + this.currentValue = val || []; + if (val === null || !val.length) this.selected = []; }, currentValue () { - this.$emit('input', this.currentValue); + if (this.isValueNull) { + this.isValueNull = false; + this.$emit('input', null); + } else { + this.$emit('input', this.currentValue); + } if (this.updatingValue) { this.updatingValue = false; return;