From 9576a3a14836fa1f207b2e99236501c3593dfd7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=9D=98=EC=A7=84?= Date: Thu, 13 Nov 2025 14:53:05 +0900 Subject: [PATCH] =?UTF-8?q?=EB=8B=A8=EC=86=8D=EC=9E=A5=EB=B9=84=EC=9E=A5?= =?UTF-8?q?=EC=86=8C=20=EC=A0=95=EB=B3=B4=20=EA=B4=80=EB=A6=AC=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/jsp/fims/eqplc/main.jsp | 428 ++++++++++++++++++ .../webapp/resources/js/fims/eqplc/eqplc.js | 17 + 2 files changed, 445 insertions(+) create mode 100644 src/main/webapp/WEB-INF/jsp/fims/eqplc/main.jsp create mode 100644 src/main/webapp/resources/js/fims/eqplc/eqplc.js diff --git a/src/main/webapp/WEB-INF/jsp/fims/eqplc/main.jsp b/src/main/webapp/WEB-INF/jsp/fims/eqplc/main.jsp new file mode 100644 index 0000000..9e8889b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fims/eqplc/main.jsp @@ -0,0 +1,428 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false" session="false"%> +<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> +단속장비 관리 +
+ + + +
+ \ No newline at end of file diff --git a/src/main/webapp/resources/js/fims/eqplc/eqplc.js b/src/main/webapp/resources/js/fims/eqplc/eqplc.js new file mode 100644 index 0000000..d86b9e8 --- /dev/null +++ b/src/main/webapp/resources/js/fims/eqplc/eqplc.js @@ -0,0 +1,17 @@ +function newEqplcControl(page, doctx = ""){ + page.ctrl = new DatasetControl({ + dataGetter : obj => obj["List"], + appendData:true, + keys : ["EQPLC_CD"], + urls : { + load : wctx.url("/eqplc/list.do"), + getInfo : wctx.url("/eqplc/info.do"), + insert : wctx.url("/eqplc/insert.do"), + update : wctx.url("/eqplc/update.do") + }, + formats: { + REG_DT : datetimeFormat + } + }); + return page.ctrl; +} \ No newline at end of file