150ff0b6 by liangyifan

1

1 parent ef27c1d9
...@@ -78,7 +78,7 @@ export default { ...@@ -78,7 +78,7 @@ export default {
78 backNodeList:[], 78 backNodeList:[],
79 }, 79 },
80 sumbitList:{}, 80 sumbitList:{},
81 taskid:"", 81 activityId:"",
82 } 82 }
83 }, 83 },
84 mounted(){ 84 mounted(){
...@@ -95,18 +95,18 @@ export default { ...@@ -95,18 +95,18 @@ export default {
95 }) 95 })
96 }, 96 },
97 radioClick(scope){ 97 radioClick(scope){
98 this.taskid = scope.taskid 98 this.activityId = scope.activityId
99 this.sumbitList = scope 99 this.sumbitList = scope
100 100
101 }, 101 },
102 submitForm () { 102 submitForm () {
103 if(this.taskid==undefined){ 103 if(this.activityId==undefined){
104 this.$message.error('请至少选择一条数据'); 104 this.$message.error('请至少选择一条数据');
105 return 105 return
106 } 106 }
107 this.list.backNodeList.push({ 107 this.list.backNodeList.push({
108 id:this.taskId, 108 id:this.taskId,
109 taskid:this.taskid, 109 taskid:this.activityId,
110 processInstanceId:this.sumbitList.processInstanceId, 110 processInstanceId:this.sumbitList.processInstanceId,
111 bsmBusiness:this.bsmBusiness, 111 bsmBusiness:this.bsmBusiness,
112 outstepopinion:this.outstepopinion 112 outstepopinion:this.outstepopinion
......
...@@ -140,6 +140,7 @@ export default { ...@@ -140,6 +140,7 @@ export default {
140 issplitScreen: false, 140 issplitScreen: false,
141 unitData: [], 141 unitData: [],
142 taskId:"", 142 taskId:"",
143 bsmBusiness:"",
143 }; 144 };
144 }, 145 },
145 watch: { 146 watch: {
......