update code

prv
haha 2023-10-26 00:01:30 +08:00
parent fb7de75594
commit 79606eaf12
1 changed files with 12 additions and 7 deletions

View File

@ -188,7 +188,8 @@ export default {
return it;
})]
}
this.deptChange((()=>{}));
this.setScreenLiSel1(this.localStorage1);
this.deptChange();
});
}
this.$root.isTypeBuser = this.isTypeBuser;
@ -343,10 +344,14 @@ export default {
this.data = [{ id: 0, text: '所有项目' }, ...objs];
this.$bus.$emit("loadProjects", this.data);
this.$root.projects = this.data;
if (this.data.length > 0) {
this.setScreenLiSel2(this.data[0], init);
} else {
this.setScreenLiSel2(null);
if(this.data.find(it=>it.id==this.localStorage2.id)){
this.setScreenLiSel2(this.localStorage2)
}else{
if (this.data.length > 0) {
this.setScreenLiSel2(this.data[0], init);
} else {
this.setScreenLiSel2(null);
}
}
if(cb){
cb();