대시보드 일정관리 관련코드 삭제
parent
cb0d6baf6d
commit
acde8223ea
|
|
@ -337,82 +337,13 @@ function EgovAdminScheduleList(props) {
|
|||
<h1 className="tit_1">사이트관리</h1>
|
||||
</div>
|
||||
|
||||
<h2 className="tit_2">일정관리</h2>
|
||||
<h2 className="tit_2"></h2>
|
||||
|
||||
<ChartToggle isDailyChart={isDailyChart} onToggle={handleChartToggle}/>
|
||||
|
||||
<div style={{width: 1000, height: 300}}>
|
||||
<UserLogChart/>
|
||||
</div>
|
||||
|
||||
{/* <!-- 검색조건 --> */}
|
||||
<div className="condition">
|
||||
<ul>
|
||||
<li>
|
||||
<label className="f_select" htmlFor="sel1">
|
||||
<select name="schdulSe" id="sel1" title="조건"
|
||||
onChange={e => {
|
||||
setSearchCondition({...searchCondition, schdulSe: e.target.value});
|
||||
}}
|
||||
>
|
||||
<option value="">전체</option>
|
||||
<option value="1">회의</option>
|
||||
<option value="2">세미나</option>
|
||||
<option value="3">강의</option>
|
||||
<option value="4">교육</option>
|
||||
<option value="5">기타</option>
|
||||
</select>
|
||||
</label>
|
||||
</li>
|
||||
<li className="half L">
|
||||
<button className="prev"
|
||||
onClick={() => {
|
||||
changeDate(CODE.DATE_YEAR, -1);
|
||||
}}
|
||||
></button>
|
||||
<span>{searchCondition.year}</span>
|
||||
<button className="next"
|
||||
onClick={() => {
|
||||
changeDate(CODE.DATE_YEAR, 1);
|
||||
}}
|
||||
></button>
|
||||
</li>
|
||||
<li className="half R">
|
||||
<button className="prev"
|
||||
onClick={() => {
|
||||
changeDate(CODE.DATE_MONTH, -1);
|
||||
}}
|
||||
></button>
|
||||
<span>{(searchCondition.month + 1)}</span>
|
||||
<button className="next"
|
||||
onClick={() => {
|
||||
changeDate(CODE.DATE_MONTH, 1);
|
||||
}}
|
||||
></button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{/* <!--// 검색조건 --> */}
|
||||
|
||||
<div className="calendar_list">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>일</th>
|
||||
<th>월</th>
|
||||
<th>화</th>
|
||||
<th>수</th>
|
||||
<th>목</th>
|
||||
<th>금</th>
|
||||
<th>토</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{calendarTag}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{/* <!--// 본문 --> */}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue