diff --git a/egovframe-template-simple-react-contribution/public/assets/images/left.png b/egovframe-template-simple-react-contribution/public/assets/images/left.png new file mode 100644 index 0000000..d39bd5d Binary files /dev/null and b/egovframe-template-simple-react-contribution/public/assets/images/left.png differ diff --git a/egovframe-template-simple-react-contribution/public/assets/images/right.png b/egovframe-template-simple-react-contribution/public/assets/images/right.png new file mode 100644 index 0000000..203d699 Binary files /dev/null and b/egovframe-template-simple-react-contribution/public/assets/images/right.png differ diff --git a/egovframe-template-simple-react-contribution/src/components/EgovHeader.jsx b/egovframe-template-simple-react-contribution/src/components/EgovHeader.jsx index b1d2d43..f0c0c17 100644 --- a/egovframe-template-simple-react-contribution/src/components/EgovHeader.jsx +++ b/egovframe-template-simple-react-contribution/src/components/EgovHeader.jsx @@ -72,6 +72,10 @@ function EgovHeader({ loginUser, onChangeLogin }) { navigate(URL.JOIN); } + const SearchHandler = () => { + navigate(URL.STANDARD_CODE_SEARCH); + } + function allMenuControl(){ setMenuDiv(!menuDiv); } @@ -115,7 +119,7 @@ function EgovHeader({ loginUser, onChangeLogin }) {
- +
diff --git a/egovframe-template-simple-react-contribution/src/constants/url.js b/egovframe-template-simple-react-contribution/src/constants/url.js index 543e22f..d7d65e1 100644 --- a/egovframe-template-simple-react-contribution/src/constants/url.js +++ b/egovframe-template-simple-react-contribution/src/constants/url.js @@ -60,6 +60,7 @@ const URL = { STANDARD_CODE_DETAIL : "/standardCode/detail", //건설기준코드/리스트 STANDARD_CODE_VIEWER : "/standardCode/viewer", //건설기준코드/뷰어 STANDARD_CODE_VIEWER_LINK : "/standardCode/viewer/:linkedDocCode", //건설기준코드/뷰어/새 창 링크 + STANDARD_CODE_SEARCH : "/standardCode/search", // 통합검색 //INFORM // INFORM : "/inform", // 알림마당 diff --git a/egovframe-template-simple-react-contribution/src/css/page.css b/egovframe-template-simple-react-contribution/src/css/page.css index 5da9b40..770ab67 100644 --- a/egovframe-template-simple-react-contribution/src/css/page.css +++ b/egovframe-template-simple-react-contribution/src/css/page.css @@ -101,7 +101,8 @@ /*.P_MAIN .colbox .left_col img {max-width: 100%; border-radius: 38px; box-shadow: 8px 8px 13px #ccc;}*/ /*.P_MAIN .colbox .right_col {width: 620px; padding-top: 25px;}*/ - /*.P_MAIN .mini_board {position: relative;}*/ + /*.P_MAIN .mini_board {position: relative;}*/t + /*.P_MAIN .mini_board .tab::after {content: ""; display: block; clear: both;}*/ /*.P_MAIN .mini_board .tab li {float: left;}*/ /*.P_MAIN .mini_board .tab li + li {margin-left: 40px;}*/ diff --git a/egovframe-template-simple-react-contribution/src/pages/standardCode/StandardCodeSearch.jsx b/egovframe-template-simple-react-contribution/src/pages/standardCode/StandardCodeSearch.jsx new file mode 100644 index 0000000..d814b15 --- /dev/null +++ b/egovframe-template-simple-react-contribution/src/pages/standardCode/StandardCodeSearch.jsx @@ -0,0 +1,14 @@ +import React, { useState } from 'react'; +import {Link, useLocation, useNavigate} from 'react-router-dom'; +import * as EgovNet from 'api/egovFetch'; + +function StandardCodeSeearch(){ + + + + return ( +
통합검색 페이지
+ ); +} + +export default StandardCodeSeearch; \ No newline at end of file diff --git a/egovframe-template-simple-react-contribution/src/routes/index.jsx b/egovframe-template-simple-react-contribution/src/routes/index.jsx index e4c6bdc..2454b6c 100644 --- a/egovframe-template-simple-react-contribution/src/routes/index.jsx +++ b/egovframe-template-simple-react-contribution/src/routes/index.jsx @@ -59,7 +59,7 @@ import StandardCodeInfo from "../pages/standardCode/info/StandardCodeInfo"; import StandardCodeTerm from "pages/standardCode/StandardCodeTerm"; import StandardCodeEng from "pages/standardCode/StandardCodeEng"; import StandardCodeOld from "pages/standardCode/StandardCodeOld"; - +import StandardCodeSearch from "pages/standardCode/StandardCodeSearch"; //INFORM // import EgovDailyList from 'pages/inform/daily/EgovDailyList'; @@ -303,6 +303,7 @@ const SecondRoutes = () => { } /> } /> } /> + } /> {/*기준코드리스트*/}