提交代码
parent
b7c6c7d705
commit
1ee06ad14e
|
@ -266,7 +266,6 @@ export default {
|
|||
let _dept = { id: res.rows[0].deptId, text: res.rows[0].deptName };
|
||||
this.$root.dept = _dept;
|
||||
let _project = { id: res.rows[0].id, text: res.rows[0].projectName };
|
||||
this.$root.project = _project;
|
||||
this.$root.hasInitHeader = true;
|
||||
this.$root._prjIds = res.rows[0].id;
|
||||
let _projects = [];
|
||||
|
@ -546,24 +545,35 @@ export default {
|
|||
cb();
|
||||
}
|
||||
},
|
||||
setScreenLiSel2(item, init) {
|
||||
if (item) {
|
||||
this.showSel2 = false;
|
||||
if (!init || !this.dept2) {
|
||||
localStorage.setItem("data2", JSON.stringify(item))
|
||||
this.localStorage2 = JSON.parse(localStorage.getItem("data2"))
|
||||
//this.$emit('itemdata', item);
|
||||
this.dept2 = item.text;
|
||||
}
|
||||
this.$root.project = this.localStorage2;
|
||||
//this.$bus.$emit("projectChange", this.localStorage2);
|
||||
} else {
|
||||
localStorage.removeItem("data2");
|
||||
this.localStorage2 = {};
|
||||
this.showSel2 = false;
|
||||
this.dept2 = '';
|
||||
setScreenLiSel2(proItem, init) {
|
||||
if(proItem && proItem.id){
|
||||
this.$root.projects.forEach(item => {
|
||||
if (item.id == proItem.id) {
|
||||
this.$root.project = item;
|
||||
localStorage.setItem("data2", JSON.stringify(proItem));
|
||||
this.localStorage2 = proItem;
|
||||
this.dept2 = proItem.text;
|
||||
this.$bus.$emit("projectChange",proItem);
|
||||
}
|
||||
});
|
||||
}
|
||||
this.$bus.$emit("projectChange",this.localStorage2);
|
||||
// if (item) {
|
||||
// this.showSel2 = false;
|
||||
// if (!init || !this.dept2) {
|
||||
// localStorage.setItem("data2", JSON.stringify(item))
|
||||
// this.localStorage2 = JSON.parse(localStorage.getItem("data2"))
|
||||
// //this.$emit('itemdata', item);
|
||||
// //this.dept2 = item.text;
|
||||
// }
|
||||
// this.$root.project = this.localStorage2;
|
||||
// //this.$bus.$emit("projectChange", this.localStorage2);
|
||||
// } else {
|
||||
// localStorage.removeItem("data2");
|
||||
// this.localStorage2 = {};
|
||||
// this.showSel2 = false;
|
||||
// this.dept2 = '';
|
||||
// }
|
||||
//this.$bus.$emit("projectChange",this.localStorage2);
|
||||
},
|
||||
|
||||
//时间方法
|
||||
|
|
Loading…
Reference in New Issue