| | |
| | | deployId: row.deployId, |
| | | procDefId: row.processDefId, |
| | | processName: row.taskName, |
| | | flowName: this.queryParams.processName, |
| | | projectName: this.detailData.projectName, |
| | | taskId: row.taskId, |
| | | showAuditing: res.data, |
| | | goBackParams: this.queryParams |
| | |
| | | goToProcessDetail(row) { |
| | | this.$router.push({ path: '/flowable/task/myProcess/detail/index', |
| | | query: { |
| | | projectName: this.detailData.projectName, |
| | | flowName: this.queryParams.processName, |
| | | procInsId: row.processInsId, |
| | | deployId: row.deployId, |
| | | taskId: row.taskId, |
| | |
| | | }, |
| | | search() { |
| | | this.queryParams.currentPage = 1; |
| | | this.tableLoading = true |
| | | this.getList() |
| | | }, |
| | | sizeChange(pageSize) { |
| | | this.tableLoading = true |
| | | this.queryParams.pageSize = pageSize; |
| | | this.getList() |
| | | }, |
| | | pageChange(pageNum) { |
| | | this.tableLoading = true |
| | | this.queryParams.currentPage = pageNum; |
| | | this.getList() |
| | | }, |