From 6f283ac3bd8ea5c9bb90204619f582cd97f68af3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Thu, 12 Dec 2024 11:15:25 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=8A=9E=E7=BB=93=E6=97=B6=E9=99=90?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shequzhili/event/cpts/process-form-assign.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/modules/shequzhili/event/cpts/process-form-assign.vue b/src/views/modules/shequzhili/event/cpts/process-form-assign.vue index 53b035b41..88736b00c 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-assign.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-assign.vue @@ -215,10 +215,12 @@ export default { this.formData.handlingReq = this.eventDetailCopy.handlingReq; this.formData.transferAdvice = this.eventDetailCopy.transferAdvice; - let dateTime = new Date(new Date(this.eventDetailCopy.timeLimit).getTime()- (1000 * 60 * 60 * 24)) - let yesterday = `${dateTime.getFullYear()}-${(dateTime.getMonth() +1)}-${dateTime.getDate()}` - console.log('yesterday',yesterday) - this.formData.timeLimit = yesterday + ' ' + '16:00:00' + if (this.eventDetailCopy.timeLimit) { + let dateTime = new Date(new Date(this.eventDetailCopy.timeLimit).getTime() - (1000 * 60 * 60 * 24)) + let yesterday = `${dateTime.getFullYear()}-${(dateTime.getMonth() + 1)}-${dateTime.getDate()}` + console.log('yesterday', yesterday) + this.formData.timeLimit = yesterday + ' ' + '16:00:00' + } this.formData.contactTime = this.$dayjs(new Date(new Date().getTime() + (1000 * 60 * 60))).format('YYYY-MM-DD HH:mm:ss') } }, From 972d87b299f07a79c83168a3dd93038994fbf07b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Thu, 12 Dec 2024 18:03:38 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E5=BD=95=E9=9F=B3=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E4=B8=BA=E6=98=AF=EF=BC=8C=E5=88=86=E6=9E=90=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E5=8A=A0%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/shequzhili/analysis/index.vue | 3 +++ .../modules/shequzhili/event/cpts/process-form-assign.vue | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/modules/shequzhili/analysis/index.vue b/src/views/modules/shequzhili/analysis/index.vue index 7d1f6d783..3e61da04b 100644 --- a/src/views/modules/shequzhili/analysis/index.vue +++ b/src/views/modules/shequzhili/analysis/index.vue @@ -169,6 +169,9 @@ prop="proportion" label="同级占比" > + + {{ scope.row.proportion }}% +