From 3040c9c5ac69356865be3328a5a1e2d566f1628a Mon Sep 17 00:00:00 2001 From: thkim Date: Thu, 28 Dec 2023 13:30:07 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B4=80=EB=A6=AC=EC=9E=90=20=EC=BB=A8?= =?UTF-8?q?=ED=85=90=EC=B8=A0=20=EA=B4=80=EB=A6=AC=20=EC=AA=BD=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=20=EB=A9=94=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 --- .../src/pages/admin/contents/PopUp.jsx | 65 ++++++++++++++++++- .../admin/contents/StandardsResearch.jsx | 43 +++++++++++- .../src/pages/admin/contents/Survey.jsx | 41 +++++++++++- .../src/pages/admin/contents/TextMessages.jsx | 41 +++++++++++- 4 files changed, 185 insertions(+), 5 deletions(-) diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp.jsx index 657a3c2..648f037 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/PopUp.jsx @@ -1,13 +1,76 @@ import React from 'react'; +import { Link } from 'react-router-dom'; +import URL from 'constants/url'; + +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; function PopUp(props) { + + + + const Location = React.memo(function Location() { + return ( +
+ +
+ ) + }); return (
- PopUp +
+ {/* */} + + {/* */} + +
+ {/* */} + + {/* */} + +
+ {/* */} + +
+

컨텐츠 관리

+
+ +

팝업 관리

+ + +
+ +
+ + + + + + + + + + +
제목기간사용여부삭제
+
+
+ {/* */} +
+
+
); } + export default PopUp; \ No newline at end of file diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardsResearch.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardsResearch.jsx index 4992f4f..11797ee 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardsResearch.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/StandardsResearch.jsx @@ -1,13 +1,52 @@ import React from 'react'; +import { Link } from 'react-router-dom'; + +import URL from 'constants/url'; + +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; function StandardsResearch(props) { + const Location = React.memo(function Location() { + return ( +
+ +
+ ) + }); + return (
- StandardsResearch +
+ {/* */} + + {/* */} + +
+ {/* */} + + {/* */} + +
+ {/* */} +
+

컨텐츠 관리

+
+ +

건설기준연구 관리

+ + 여기에 구현해주세요. + {/* */} +
+
+
); } -export default StandardsResearch; \ No newline at end of file +export default StandardsResearch; diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/Survey.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/Survey.jsx index cdf7669..6994d4a 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/Survey.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/Survey.jsx @@ -1,11 +1,50 @@ import React from 'react'; +import { Link } from 'react-router-dom'; + +import URL from 'constants/url'; + +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; function Survey(props) { + const Location = React.memo(function Location() { + return ( +
+ +
+ ) + }); + return (
- Survey +
+ {/* */} + + {/* */} + +
+ {/* */} + + {/* */} + +
+ {/* */} +
+

컨텐츠 관리

+
+ +

설문 관리

+ + 여기에 구현해주세요. + {/* */} +
+
+
); } diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/contents/TextMessages.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/contents/TextMessages.jsx index 08e537a..69ef21e 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/contents/TextMessages.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/contents/TextMessages.jsx @@ -1,11 +1,50 @@ import React from 'react'; +import { Link } from 'react-router-dom'; + +import URL from 'constants/url'; + +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; function TextMessages(props) { + const Location = React.memo(function Location() { + return ( +
+ +
+ ) + }); + return (
- TextMessages +
+ {/* */} + + {/* */} + +
+ {/* */} + + {/* */} + +
+ {/* */} +
+

컨텐츠 관리

+
+ +

문자 발송

+ + 여기에 구현해주세요. + {/* */} +
+
+
); }