diff --git a/src/components/ProcessDetailList.vue b/src/components/ProcessDetailList.vue
index 4f750465..598bc958 100644
--- a/src/components/ProcessDetailList.vue
+++ b/src/components/ProcessDetailList.vue
@@ -34,25 +34,26 @@
+
-
-
- {{ record.endTime && record.createTime ? computedTimeConsuming(record) : global.emptyLine }}
-
- {{ record.endTime && record.createTime ? computedTimeConsuming(record) : global.emptyLine }}
-
-
-
+
+
+
+
+
+
+
+
@@ -178,8 +179,8 @@ export default {
{
title: this.$t('workCenter.processDetail.timeConsuming'),
width: 150,
- dataIndex: 'timeConsuming',
- scopedSlots: { customRender: 'timeConsuming' }
+ dataIndex: 'overTime',
+ scopedSlots: { customRender: 'text' }
},
// 审批意见
{
@@ -287,7 +288,10 @@ export default {
return
}
this.loading = true
- urgeProcessNode({taskId: this.selectedRowKeys.join(',')}).then(res => {
+ const taskIds = this.selectedRowKeys.map(item => {
+ return item.split(',')[1]
+ })
+ urgeProcessNode({ taskId: taskIds.join(',') }).then(res => {
if (res.success) {
this.$message.success(res.message)
} else {