|
|
@@ -1251,11 +1251,11 @@ export default {
|
|
|
// 作废详情
|
|
|
detailCancel(row) {
|
|
|
if (row.cancelStatus !== '4') {
|
|
|
- this.workContractFileService.findByContractInfoId(row.id).then((data) => {
|
|
|
+ this.workContractService.findById(row.id).then((data) => {
|
|
|
if (!this.commonJS.isEmpty(data.id)) {
|
|
|
taskService.getTaskDef({
|
|
|
- procInsId: data.procInsId,
|
|
|
- procDefId: data.processDefinitionId
|
|
|
+ procInsId: data.procInsIdCancel,
|
|
|
+ procDefId: data.processDefinitionIdCancel
|
|
|
}).then((data) => {
|
|
|
this.$router.push({
|
|
|
path: '/flowable/task/TaskFormDetail',
|
|
|
@@ -1264,7 +1264,7 @@ export default {
|
|
|
readOnly: true,
|
|
|
title: '作废流程详情',
|
|
|
formTitle: '作废流程详情',
|
|
|
- businessId: row.id
|
|
|
+ businessId: row.cancelId
|
|
|
}
|
|
|
})
|
|
|
})
|