fix:修复asset配置是,location无校验信息的bug & 左侧动态菜单样式调整

This commit is contained in:
wangwenrui
2020-04-16 14:15:51 +08:00
parent dae339346b
commit 555a8e3b3c
11 changed files with 73 additions and 18 deletions

View File

@@ -292,7 +292,6 @@
console.log(this.uChecked)
this.oldUChecked=this.uChecked;
this.selectedData.u=this.findOldCheckedMinMax(this.uChecked);
this.$emit('change',this.selectedData);
},
clearUChecked:function(){ //取消所有选中恢复到刚打开时的状态
this.uChecked=[];
@@ -387,7 +386,13 @@
}
},
watch:{
selectedData:{
immediate:true,
deep:true,
handler(n,o){
this.$emit('change',n);
}
}
}
}
</script>