From 2c96347c5e54e18b72fe8194c59217ff45c60a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167@qq.com> Date: Thu, 15 Sep 2022 17:33:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=85=E5=8A=9E=E6=B5=81=E7=A8=8B=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=89=B9=E9=87=8F=E5=8A=9E=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processCenter/components/batchProcessing.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jero-web/src/views/processCenter/processList/tabComponents/processCenter/components/batchProcessing.vue b/jero-web/src/views/processCenter/processList/tabComponents/processCenter/components/batchProcessing.vue index 293f6b944..849a43cff 100644 --- a/jero-web/src/views/processCenter/processList/tabComponents/processCenter/components/batchProcessing.vue +++ b/jero-web/src/views/processCenter/processList/tabComponents/processCenter/components/batchProcessing.vue @@ -120,6 +120,7 @@ getData(data) { this.selectedRowKeys = data this.taskDefinitionKey = this.selectedRowKeys[0].taskDefinitionKey + this.taskIds = [] this.selectedRowKeys.forEach(res=>{ if (res.taskIds.indexOf(',') != '-1'){ res.taskIds = res.taskIds.slice(0,res.taskIds.indexOf(',')) @@ -161,11 +162,13 @@ handleOk() { this.$refs.ruleForm.validate(valid => { if (valid) { + let handlingTime = moment(new Date()).format('YYYY-MM-DD HH:mm:ss') let query = { ...this.formInline, taskIds:this.taskIds.join(','), userId:this.userInfo().id, - taskDefinitionKey:this.taskDefinitionKey + taskDefinitionKey:this.taskDefinitionKey, + handlingTime:handlingTime } if (this.formInline.flag == '1'){ this.addBatch()