a14b8398 by 蔡俊立

获取回退节点

1 parent 1ee95920
...@@ -87,7 +87,7 @@ export default { ...@@ -87,7 +87,7 @@ export default {
87 }, 87 },
88 methods: { 88 methods: {
89 tablelistFn(){ 89 tablelistFn(){
90 getTaskBackNode({taskId:this.taskId}).then(res => { 90 getTaskBackNode({bsmBusiness:this.bsmBusiness}).then(res => {
91 if (res.code === 200) { 91 if (res.code === 200) {
92 this.tableData = res.result 92 this.tableData = res.result
93 } 93 }
......
...@@ -85,7 +85,6 @@ ...@@ -85,7 +85,6 @@
85 <thDialog 85 <thDialog
86 ref="thdialogRef" 86 ref="thdialogRef"
87 v-model="thflag" 87 v-model="thflag"
88 :taskId="taskId"
89 :bsmBusiness="bsmBusiness" 88 :bsmBusiness="bsmBusiness"
90 :queryForm="queryForm" 89 :queryForm="queryForm"
91 /> 90 />
...@@ -122,7 +121,6 @@ export default { ...@@ -122,7 +121,6 @@ export default {
122 editItem: "", 121 editItem: "",
123 issplitScreen: false, 122 issplitScreen: false,
124 unitData: [], 123 unitData: [],
125 taskId: "",
126 bsmBusiness: "", 124 bsmBusiness: "",
127 }; 125 };
128 }, 126 },
...@@ -160,7 +158,6 @@ export default { ...@@ -160,7 +158,6 @@ export default {
160 this.unitData = res.result ? res.result : []; 158 this.unitData = res.result ? res.result : [];
161 setTimeout(() => { 159 setTimeout(() => {
162 that.$refs.slxx?.[0].list(that.unitData?.[0]?.bsmSldy); 160 that.$refs.slxx?.[0].list(that.unitData?.[0]?.bsmSldy);
163 this.taskId = that.unitData?.[0]?.taskId;
164 this.bsmBusiness = that.unitData?.[0]?.bsmBusiness; 161 this.bsmBusiness = that.unitData?.[0]?.bsmBusiness;
165 }, 300); 162 }, 300);
166 } 163 }
...@@ -188,7 +185,6 @@ export default { ...@@ -188,7 +185,6 @@ export default {
188 }, 185 },
189 // 左侧列表点击调用接口 186 // 左侧列表点击调用接口
190 unitClick (item) { 187 unitClick (item) {
191 this.taskId = item.taskId
192 this.bsmBusiness = item.bsmBusiness 188 this.bsmBusiness = item.bsmBusiness
193 var activeTabName = this.activeName 189 var activeTabName = this.activeName
194 if(activeTabName == 'slxx'){ 190 if(activeTabName == 'slxx'){
......