From 06ed87c3c26f39c61c7e3a8ef3269fbb1631079c Mon Sep 17 00:00:00 2001 From: Leeminha Date: Wed, 9 Nov 2022 13:39:13 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=B0=EC=B9=98=20=EB=82=A0=EC=A7=9C=20?= =?UTF-8?q?=EC=A1=B0=ED=9A=8C=20=EA=B8=B0=EA=B0=84=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=8C=A8=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/modules/sysMgt/views/BatchDetail.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/modules/sysMgt/views/BatchDetail.vue b/frontend/src/modules/sysMgt/views/BatchDetail.vue index 4e3e009..23a574c 100644 --- a/frontend/src/modules/sysMgt/views/BatchDetail.vue +++ b/frontend/src/modules/sysMgt/views/BatchDetail.vue @@ -285,13 +285,8 @@ export default { }, closeDate(type) { if (type != undefined && type != null) { - if (type == 'start') { - this.disabledSDate = {from: this.endDate}; - this.disabledEDate = {to: this.startDate, from: this.endDate}; - } else if (type == 'end') { this.disabledSDate = {from: this.endDate}; this.disabledEDate = {to: this.startDate, from: new Date()}; - } } },