Update cascader.vue
This commit is contained in:
parent
46c7303289
commit
0f88a39e24
1 changed files with 11 additions and 4 deletions
|
@ -171,7 +171,8 @@
|
||||||
currentValue: this.value || [],
|
currentValue: this.value || [],
|
||||||
query: '',
|
query: '',
|
||||||
validDataStr: '',
|
validDataStr: '',
|
||||||
isLoadedChildren: false // #950
|
isLoadedChildren: false, // #950
|
||||||
|
isValueNull: false // hack:解决 value 置为 null 时,$emit:input [] 而不是 null
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -438,11 +439,17 @@
|
||||||
this.$emit('on-visible-change', val);
|
this.$emit('on-visible-change', val);
|
||||||
},
|
},
|
||||||
value (val) {
|
value (val) {
|
||||||
this.currentValue = val;
|
if (val === null) this.isValueNull = true;
|
||||||
if (!val.length) this.selected = [];
|
this.currentValue = val || [];
|
||||||
|
if (val === null || !val.length) this.selected = [];
|
||||||
},
|
},
|
||||||
currentValue () {
|
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) {
|
if (this.updatingValue) {
|
||||||
this.updatingValue = false;
|
this.updatingValue = false;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue