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="同级占比" > +
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 88736b00c..03810e14f 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-assign.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-assign.vue @@ -88,7 +88,7 @@ export default { isCascaderDisabled:false, customerId: localStorage.getItem("customerId"), formData: { - videoNeedFlag:"",//是否需要录音。是为1不是为0 + videoNeedFlag:"1",//是否需要录音。是为1不是为0 operationType: "5", //处理方式[0:已回复 5、指派 6、完成并回复] handlingReq:'',//办理要求 transferAdvice:'',//转办意见 From 049e6b6c371c92a7c878edcf2cecb58a145e6124 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: Fri, 13 Dec 2024 10:12:50 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E4=B8=8D=E4=BA=86?= =?UTF-8?q?=E5=BD=95=E9=9F=B3=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../event/cpts/process-form-complete.vue | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue index 941ad8c59..9c492d591 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form-complete.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form-complete.vue @@ -9,7 +9,7 @@
- + item.attachmentType==='image') + this.audioList = this.formData.internalFile.filter(item=>item.attachmentType==='voice') + this.docList = this.formData.internalFile.filter(item=>item.attachmentType == 'doc') + } + } + }, }, created() { }, mounted() { + console.log(this.formData,"formData,formDataformData"); + console.log(this.eventDetailData,"alallalalalalalal"); if (this.eventDetailData.videoNeedFlag=="1") { this.required=true @@ -516,6 +517,7 @@ export default { attachmentType: file.raw.type, attachmentUrl: res.data.url, }); + this.formData.files.push(this.audioList) console.log(this.formData.files); } else { this.$message.error(res.msg);