liunan #10

Merged
liunan merged 47 commits from liunan into master 2024-09-13 14:43:34 +08:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 7a08110f8b - Show all commits

View File

@ -104,9 +104,11 @@
if(this.$listeners.change){ if(this.$listeners.change){
this.$emit('change',newvalues); this.$emit('change',newvalues);
} }
if(this.props.lazyLoad){
this.props.lazyLoad({level:index+1,pathLabels:newvalues,value},(datas)=>{ this.props.lazyLoad({level:index+1,pathLabels:newvalues,value},(datas)=>{
this.inputs[index+1].options=datas; this.inputs[index+1].options=datas;
}); });
}
this.placeholderValue=newplaceholderValue.join("/") this.placeholderValue=newplaceholderValue.join("/")
}, },
onCancel(){ onCancel(){