From 40737f3cceb6df614f36d2b6d18d16223ff7207d Mon Sep 17 00:00:00 2001 From: minuk926 Date: Fri, 28 Oct 2022 17:39:31 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20javascript=20=EA=B5=AC=EC=A1=B0=20?= =?UTF-8?q?=ED=99=95=EC=A0=95=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/fims/biz/rt/rt0200Sel.jsp | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/fims/biz/rt/rt0200Sel.jsp b/src/main/webapp/WEB-INF/jsp/fims/biz/rt/rt0200Sel.jsp index abb8c248..720abac7 100644 --- a/src/main/webapp/WEB-INF/jsp/fims/biz/rt/rt0200Sel.jsp +++ b/src/main/webapp/WEB-INF/jsp/fims/biz/rt/rt0200Sel.jsp @@ -128,7 +128,6 @@ /************************************************************************** * Global Variable **************************************************************************/ - const ARR_INSTANCE = [null,null,null]; const ARR_TOTCNT = [0,0,0]; let CUR_TAB_SEQ = 0; @@ -272,7 +271,22 @@ * function ******************************* */ const fnRt0200Sel = { - add: function(){ + search: () => { + const sch_date_opt = $('select[name=sch_date_opt]').val(); + const sch_date_from = $('#sch_date_from').val(); + const sch_date_to = $('#sch_date_to').val(); + /*sch_date_from = sch_date_from.replace(/\./g, '');*/ + + if (sch_date_from != "" || sch_date_to != "") { + if (sch_date_opt == "" || sch_date_from == "" || sch_date_to == "") { + alert("조회기준 또는 일시를 선택하세요"); + return false; + } + } + ARR_INSTANCE[CUR_TAB_SEQ].reloadData(); + } + + ,add: function(){ cmmAjax({ url: '' ,data: $("#frmSearch").serialize() @@ -354,19 +368,7 @@ }); $('#btnSearch').on('click', () => { - const sch_date_opt = $('select[name=sch_date_opt]').val(); - const sch_date_from = $('#sch_date_from').val(); - const sch_date_to = $('#sch_date_to').val(); - /*sch_date_from = sch_date_from.replace(/\./g, '');*/ - - if (sch_date_from != "" || sch_date_to != "") { - if (sch_date_opt == "" || sch_date_from == "" || sch_date_to == "") { - alert("조회기준 또는 일시를 선택하세요"); - return false; - } - } - ARR_INSTANCE[CUR_TAB_SEQ].reloadData(); - // ARR_INSTANCE[CUR_TAB_SEQ].refreshLayout(); + fnRt0200Sel.search(); }); $('#btnExcel').on('click', () => {