feat: 관리자 컨텐츠 관리 쪽 사이드 메뉴 추가
parent
f379513681
commit
3040c9c5ac
|
|
@ -1,13 +1,76 @@
|
||||||
import React from 'react';
|
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) {
|
function PopUp(props) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const Location = React.memo(function Location() {
|
||||||
|
return (
|
||||||
|
<div className="location">
|
||||||
|
<ul>
|
||||||
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||||
|
<li><Link to={URL.ADMIN}>컨텐츠 관리</Link></li>
|
||||||
|
<li>팝업 관리</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
PopUp
|
<div className="c_wrap">
|
||||||
|
{/* <!-- Location --> */}
|
||||||
|
<Location />
|
||||||
|
{/* <!--// Location --> */}
|
||||||
|
|
||||||
|
<div className="layout">
|
||||||
|
{/* <!-- Navigation --> */}
|
||||||
|
<EgovLeftNav></EgovLeftNav>
|
||||||
|
{/* <!--// Navigation --> */}
|
||||||
|
|
||||||
|
<div className="contents " id="contents">
|
||||||
|
{/* <!-- 본문 --> */}
|
||||||
|
|
||||||
|
<div className="top_tit">
|
||||||
|
<h1 className="tit_1">컨텐츠 관리</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 className="tit_2">팝업 관리</h2>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="scope-popupMng" class="row admin-main-content-wrapper">
|
||||||
|
<div class="row">
|
||||||
|
<div class="btn-group pull-right">
|
||||||
|
<a href="/PopupMng/Create" class="btn btn-info btn-sm">
|
||||||
|
<span class="glyphicon glyphicon-pencil"></span>팝업 추가 </a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="table-responsive content-box">
|
||||||
|
<table class="table table-condensed table-hover th-info">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>제목</th>
|
||||||
|
<th>기간</th>
|
||||||
|
<th>사용여부</th>
|
||||||
|
<th>삭제</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody></tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* <!--// 본문 --> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export default PopUp;
|
export default PopUp;
|
||||||
|
|
@ -1,13 +1,52 @@
|
||||||
import React from 'react';
|
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) {
|
function StandardsResearch(props) {
|
||||||
|
|
||||||
|
const Location = React.memo(function Location() {
|
||||||
|
return (
|
||||||
|
<div className="location">
|
||||||
|
<ul>
|
||||||
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||||
|
<li><Link to={URL.ADMIN}>컨텐츠 관리</Link></li>
|
||||||
|
<li>건설기준연구 관리</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
StandardsResearch
|
<div className="c_wrap">
|
||||||
|
{/* <!-- Location --> */}
|
||||||
|
<Location />
|
||||||
|
{/* <!--// Location --> */}
|
||||||
|
|
||||||
|
<div className="layout">
|
||||||
|
{/* <!-- Navigation --> */}
|
||||||
|
<EgovLeftNav></EgovLeftNav>
|
||||||
|
{/* <!--// Navigation --> */}
|
||||||
|
|
||||||
|
<div className="contents " id="contents">
|
||||||
|
{/* <!-- 본문 --> */}
|
||||||
|
<div className="top_tit">
|
||||||
|
<h1 className="tit_1">컨텐츠 관리</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 className="tit_2">건설기준연구 관리</h2>
|
||||||
|
|
||||||
|
여기에 구현해주세요.
|
||||||
|
{/* <!--// 본문 --> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default StandardsResearch;
|
export default StandardsResearch;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,50 @@
|
||||||
import React from 'react';
|
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) {
|
function Survey(props) {
|
||||||
|
|
||||||
|
const Location = React.memo(function Location() {
|
||||||
|
return (
|
||||||
|
<div className="location">
|
||||||
|
<ul>
|
||||||
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||||
|
<li><Link to={URL.ADMIN}>컨텐츠 관리</Link></li>
|
||||||
|
<li>설문 관리</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
Survey
|
<div className="c_wrap">
|
||||||
|
{/* <!-- Location --> */}
|
||||||
|
<Location />
|
||||||
|
{/* <!--// Location --> */}
|
||||||
|
|
||||||
|
<div className="layout">
|
||||||
|
{/* <!-- Navigation --> */}
|
||||||
|
<EgovLeftNav></EgovLeftNav>
|
||||||
|
{/* <!--// Navigation --> */}
|
||||||
|
|
||||||
|
<div className="contents " id="contents">
|
||||||
|
{/* <!-- 본문 --> */}
|
||||||
|
<div className="top_tit">
|
||||||
|
<h1 className="tit_1">컨텐츠 관리</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 className="tit_2">설문 관리</h2>
|
||||||
|
|
||||||
|
여기에 구현해주세요.
|
||||||
|
{/* <!--// 본문 --> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,50 @@
|
||||||
import React from 'react';
|
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) {
|
function TextMessages(props) {
|
||||||
|
|
||||||
|
const Location = React.memo(function Location() {
|
||||||
|
return (
|
||||||
|
<div className="location">
|
||||||
|
<ul>
|
||||||
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||||
|
<li><Link to={URL.ADMIN}>컨텐츠 관리</Link></li>
|
||||||
|
<li>문자 발송</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
TextMessages
|
<div className="c_wrap">
|
||||||
|
{/* <!-- Location --> */}
|
||||||
|
<Location />
|
||||||
|
{/* <!--// Location --> */}
|
||||||
|
|
||||||
|
<div className="layout">
|
||||||
|
{/* <!-- Navigation --> */}
|
||||||
|
<EgovLeftNav></EgovLeftNav>
|
||||||
|
{/* <!--// Navigation --> */}
|
||||||
|
|
||||||
|
<div className="contents " id="contents">
|
||||||
|
{/* <!-- 본문 --> */}
|
||||||
|
<div className="top_tit">
|
||||||
|
<h1 className="tit_1">컨텐츠 관리</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 className="tit_2">문자 발송</h2>
|
||||||
|
|
||||||
|
여기에 구현해주세요.
|
||||||
|
{/* <!--// 본문 --> */}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue