fix sub_process node open sub_task show empty page (#6522)
This commit is contained in:
parent
72234693dd
commit
f28faaeabb
|
|
@ -452,7 +452,7 @@
|
|||
query = { subProcessIds: ids.join(',') }
|
||||
}
|
||||
let $name = this.$route.name.split('-')
|
||||
this.$router.push({ path: `/${$name[0]}/${$name[1]}/list/${id}`, query: query })
|
||||
this.$router.push({ path: `/${$name[0]}/${this.projectId}/${$name[1]}/list/${id}`, query: query })
|
||||
},
|
||||
/**
|
||||
* Subprocess processing
|
||||
|
|
@ -469,7 +469,7 @@
|
|||
subProcessIds.push(this.urlParam.id)
|
||||
}
|
||||
let $name = this.$route.name.split('-')
|
||||
this.$router.push({ path: `/${$name[0]}/${$name[1]}/list/${subProcessId}`, query: { subProcessIds: subProcessIds.join(',') } })
|
||||
this.$router.push({ path: `/${$name[0]}/${this.projectId}/${$name[1]}/list/${subProcessId}`, query: { subProcessIds: subProcessIds.join(',') } })
|
||||
},
|
||||
/**
|
||||
* Refresh data
|
||||
|
|
|
|||
Loading…
Reference in New Issue