|
@@ -423,7 +423,7 @@ export default {
|
|
|
this.form.type = 0;
|
|
|
this.modalTaskVisible = true;
|
|
|
this.userLoading = true;
|
|
|
- this.getAction(this.url.getNextNode,{procDefId:v.procDefId, currActId:v.key}).then(res => {
|
|
|
+ this.getAction(this.url.getNextNode,{procDefId:v.procDefId, currActId:v.key,procInstId:v.procInstId}).then(res => {
|
|
|
this.userLoading = false;
|
|
|
if (res.success) {
|
|
|
if (res.result.type == 3 || res.result.type == 4) {
|
|
@@ -455,7 +455,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.userLoading = true;
|
|
|
- this.getAction(this.url.getNode+v).then(res => {
|
|
|
+ this.getAction(this.url.getNode+v+"&"+this.form.procInstId).then(res => {
|
|
|
this.userLoading = false;
|
|
|
if (res.success) {
|
|
|
if (res.result.users && res.result.users.length > 0) {
|