48b879ef by 杨威
2 parents 39b475c2 ed59c22d
...@@ -591,7 +591,8 @@ ...@@ -591,7 +591,8 @@
591 bsm: res.processInstance.title, 591 bsm: res.processInstance.title,
592 source: 2, 592 source: 2,
593 auth:'2', 593 auth:'2',
594 workitemInstanceId:res.workitemInstance.id 594 workitemInstanceId:res.workitemInstance.id,
595 ywbsm:res.processInstance.businessId
595 } 596 }
596 }); 597 });
597 } else { 598 } else {
......
...@@ -94,7 +94,8 @@ export default { ...@@ -94,7 +94,8 @@ export default {
94 return{ 94 return{
95 getRightTree: this.getRightTree, 95 getRightTree: this.getRightTree,
96 getTreeByBsm:this.getTreeByBsm, 96 getTreeByBsm:this.getTreeByBsm,
97 getTreeByS:this.getTreeByS 97 getTreeByS:this.getTreeByS,
98 getTreeList:this.getTreeList
98 } 99 }
99 }, 100 },
100 data() { 101 data() {
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
60 60
61 export default { 61 export default {
62 name: "", 62 name: "",
63 inject:['getRightTree','getTreeByBsm'], 63 inject:['getRightTree','getTreeByBsm','getTreeList'],
64 components: {SearchHead}, 64 components: {SearchHead},
65 props: {}, 65 props: {},
66 data() { 66 data() {
...@@ -81,6 +81,7 @@ ...@@ -81,6 +81,7 @@
81 this.queryData.pageSize=this.pageSize; 81 this.queryData.pageSize=this.pageSize;
82 this.queryData.pageNo=this.pageNo; 82 this.queryData.pageNo=this.pageNo;
83 this.getData(this.queryData); 83 this.getData(this.queryData);
84 this.getTreeList();
84 this.$nextTick(()=>{ 85 this.$nextTick(()=>{
85 this.tableHeight = (document.documentElement.clientHeight || document.body.clientHeight) - 332; 86 this.tableHeight = (document.documentElement.clientHeight || document.body.clientHeight) - 332;
86 }) 87 })
......