퍼블 업뎃
parent
4915ff4362
commit
72e86b51b3
Binary file not shown.
|
After Width: | Height: | Size: 195 B |
Binary file not shown.
|
After Width: | Height: | Size: 190 B |
|
|
@ -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 }) {
|
|||
<div className="col-10 d-flex justify-content-between">
|
||||
<div className="col-11"><input type="text" className="form-control shadow-none" placeholder="검색어를 입력하세요." lang="ko" /></div>
|
||||
<div className="col-1 text-center">
|
||||
<button type="button" className="topsearch"></button>
|
||||
<button type="button" className="topsearch" onClick={SearchHandler}></button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -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", // 알림마당
|
||||
|
|
|
|||
|
|
@ -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;}*/
|
||||
|
|
|
|||
|
|
@ -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 (
|
||||
<div>통합검색 페이지</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default StandardCodeSeearch;
|
||||
|
|
@ -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 = () => {
|
|||
<Route path={URL.STANDARD_CODE_TERM} element={<StandardCodeTerm />} />
|
||||
<Route path={URL.STANDARD_CODE_ENG} element={<StandardCodeEng />} />
|
||||
<Route path={URL.STANDARD_CODE_OLD} element={<StandardCodeOld />} />
|
||||
<Route path={URL.STANDARD_CODE_SEARCH} element={<StandardCodeSearch />} />
|
||||
|
||||
|
||||
{/*기준코드리스트*/}
|
||||
|
|
|
|||
Loading…
Reference in New Issue