From e65377a212a8e02795b00fcd769ecb5a0325cae3 Mon Sep 17 00:00:00 2001 From: jiayang yue Date: Tue, 3 Jun 2025 12:51:19 +0800 Subject: [PATCH] =?UTF-8?q?2025.06.03=201=E3=80=81=09=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E7=BC=96=E5=8F=B7=EF=BC=9A100613=20=20=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0=EF=BC=9A=E7=BB=B4=E4=BF=AE=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E6=97=B6=E9=97=B4=E7=AD=9B=E9=80=89=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=20=20=20=20=20=20=20=20=20=20=20=20=E7=9B=AE=E5=89=8D?= =?UTF-8?q?=E6=8D=A2=E7=BA=BF=E4=B8=93=E5=AE=B6=E7=BB=84=E7=BB=B4=E4=BF=AE?= =?UTF-8?q?=E5=B7=A5=E5=8D=95=E3=80=81=E8=AE=BE=E5=A4=87=E7=BB=B4=E4=BF=AE?= =?UTF-8?q?=E7=BB=84=E7=BB=B4=E4=BF=AE=E5=B7=A5=E5=8D=95=E9=83=BD=E6=9C=89?= =?UTF-8?q?=E7=BB=B4=E4=BF=AE=E8=AE=B0=E5=BD=95=E5=8A=9F=E8=83=BD=202?= =?UTF-8?q?=E3=80=81=09=E9=97=AE=E9=A2=98=E7=BC=96=E5=8F=B7=EF=BC=9A200029?= =?UTF-8?q?=20=20=E9=97=AE=E9=A2=98=E6=8F=8F=E8=BF=B0=EF=BC=9A=E7=BB=B4?= =?UTF-8?q?=E4=BF=9D=E9=A1=B9=E7=9B=AE=E6=B8=85=E5=8D=95=E9=87=8C=E7=9A=84?= =?UTF-8?q?=E7=BB=B4=E4=BF=9D=E9=A1=B9=E7=9B=AE=E5=8F=AF=E4=BB=A5=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E6=8E=92=E5=BA=8F=EF=BC=8C=E4=BF=9D=E5=85=BB?= =?UTF-8?q?=E6=96=B9=E4=BE=BF=20=E7=BB=B4=E4=BF=9D=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=E9=87=8C=E7=9A=84=E7=BB=B4=E4=BF=9D=E9=A1=B9=E7=9B=AE=E7=9B=AE?= =?UTF-8?q?=E5=89=8D=E4=B8=8D=E5=8F=AF=E4=BB=A5=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=EF=BC=8C=E7=82=B9=E6=A3=80=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=E9=87=8C=E7=9A=84=E7=82=B9=E6=A3=80=E9=A1=B9=E7=9B=AE=E5=90=8C?= =?UTF-8?q?=E7=90=86=EF=BC=8C=E5=8F=AF=E4=BB=A5=E5=8F=82=E8=80=83QMS?= =?UTF-8?q?=E9=87=8C=E7=9A=84=E6=A3=80=E9=AA=8C=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/eam/eamWorkOrderForDefect.vue | 2 +- src/views/modules/eam/eamWorkOrderForDefect2.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/modules/eam/eamWorkOrderForDefect.vue b/src/views/modules/eam/eamWorkOrderForDefect.vue index c882505..9483dc7 100644 --- a/src/views/modules/eam/eamWorkOrderForDefect.vue +++ b/src/views/modules/eam/eamWorkOrderForDefect.vue @@ -2173,7 +2173,7 @@ export default { // startDate为当前日期年月日,date类型 this.detailData.startDate = new Date() // endDate为当前日期年月日加一个月,date类型 - this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() + 1)) + this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() - 1)) this.activeTable = 'inspection_form' this.detailModelFlag = true }, diff --git a/src/views/modules/eam/eamWorkOrderForDefect2.vue b/src/views/modules/eam/eamWorkOrderForDefect2.vue index 6402536..c394269 100644 --- a/src/views/modules/eam/eamWorkOrderForDefect2.vue +++ b/src/views/modules/eam/eamWorkOrderForDefect2.vue @@ -2174,7 +2174,7 @@ export default { // startDate为当前日期年月日,date类型 this.detailData.startDate = new Date() // endDate为当前日期年月日加一个月,date类型 - this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() + 1)) + this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() - 1)) this.activeTable = 'inspection_form' this.detailModelFlag = true },