From 09251c39dd9f97c24eb1cd5be82d427c90f0d7ef Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Mon, 21 Aug 2023 10:14:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=8F=90=E4=BA=A4=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=AE=8C=E6=88=90id=E5=92=8Cname=EF=BC=8Cdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PDA/pages/task/count_detail.vue | 3 +++ fe/PDA/pages/task/issue_detail.vue | 3 +++ fe/PDA/pages/task/receipt_result.vue | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/fe/PDA/pages/task/count_detail.vue b/fe/PDA/pages/task/count_detail.vue index 446b251a5..77cd9bfad 100644 --- a/fe/PDA/pages/task/count_detail.vue +++ b/fe/PDA/pages/task/count_detail.vue @@ -665,6 +665,9 @@ mask: true }); this.datacontent.details = this.allDetails; + that.datacontent.completeUserId = localStorage.getItem('userId') + that.datacontent.completeUserName = localStorage.getItem('userName_CN') + that.datacontent.completeTime = new Date() let params = JSON.stringify(this.datacontent); finishCountJob(this.id, params) .then(res => { diff --git a/fe/PDA/pages/task/issue_detail.vue b/fe/PDA/pages/task/issue_detail.vue index c905b927c..504f9e992 100644 --- a/fe/PDA/pages/task/issue_detail.vue +++ b/fe/PDA/pages/task/issue_detail.vue @@ -623,6 +623,9 @@ title: "提交中...", mask: true }); + that.datacontent.completeUserId = localStorage.getItem('userId') + that.datacontent.completeUserName = localStorage.getItem('userName_CN') + that.datacontent.completeTime = new Date(); that.datacontent.worker = localStorage.userName_CN ==""?localStorage.userName:localStorage.userName_CN; that.datacontent.details = that.details; let params = JSON.stringify(that.datacontent); diff --git a/fe/PDA/pages/task/receipt_result.vue b/fe/PDA/pages/task/receipt_result.vue index 003d9aa9d..5c7b575ae 100644 --- a/fe/PDA/pages/task/receipt_result.vue +++ b/fe/PDA/pages/task/receipt_result.vue @@ -202,6 +202,10 @@ mask: true }) //赋值 + that.receiptJob.completeUserId = localStorage.getItem('userId') + that.receiptJob.completeUserName = localStorage.getItem('userName_CN') + that.receiptJob.completeTime = new Date() + that.receiptJob.details.forEach(r => { r.handledToLocationCode = r.recommendToLocationCode; r.worker = localStorage.userName_CN ==""?localStorage.userName:localStorage.userName_CN @@ -222,6 +226,7 @@ r.handledToLocationErpCode = r.recommendToLocationErpCode; } }); + let param = JSON.stringify(that.receiptJob); console.log(param);