Compare commits

...

4 Commits

3 changed files with 12 additions and 18 deletions

View File

@ -191,21 +191,13 @@
.roleList .head > span:nth-child(1) {width: 120px;}
.roleList .head > span:nth-child(2) {width: 180px;}
.roleList .head > span:nth-child(3) {width: 120px;}
.roleList .head > span:nth-child(4) {width: 60px;}
.roleList .head > span:nth-child(5) {width: 60px;}
.roleList .head > span:nth-child(6) {width: 60px;}
.roleList .head > span:nth-child(7) {width: 60px;}
.roleList .head > span:nth-child(8) {width: 60px;}
.roleList .head > span:nth-child(9) {width: 100px;}
.roleList .head .checkboxDiv {width: 60px;}
.roleList .head .saveBtnDiv {width: 100px;}
.roleList .result .list_item > div:nth-child(1) {width: 120px;}
.roleList .result .list_item > div:nth-child(2) {width: 180px;}
.roleList .result .list_item > div:nth-child(3) {width: 120px;}
.roleList .result .list_item > div:nth-child(4) {width: 60px;}
.roleList .result .list_item > div:nth-child(5) {width: 60px;}
.roleList .result .list_item > div:nth-child(6) {width: 60px;}
.roleList .result .list_item > div:nth-child(7) {width: 60px;}
.roleList .result .list_item > div:nth-child(8) {width: 60px;}
.roleList .result .list_item > div:nth-child(9) {width: 100px;}
.roleList .result .list_item .checkboxDiv {width: 60px;}
.roleList .result .list_item .saveBtnDiv {width: 100px;}
/* 사이트소개 */
.SITE_INTRO .ds_1 .t_1 {margin-top: 52px; color: #000; font-size: 26px; font-weight: 500; text-align: center;}

View File

@ -31,7 +31,7 @@ function MenuAuthMgt(props) {
const checkboxs = [];
roleList.forEach(function (role) {
checkboxs.push(
<div>
<div className={"checkboxDiv"}>
<Form.Check className={role.itemCd} value={role.itemCd}
onClick={(e)=>{
const checked = e.target.checked;
@ -51,7 +51,7 @@ function MenuAuthMgt(props) {
<div>{item.menuTitle}</div>
<div>{item.menuGroup}</div>
{checkboxs}
<div>
<div className={"saveBtnDiv"}>
<button className={"btn btn_blue_h31 px-1"} onClick={()=>{editMenu(item)}}>저장</button>
</div>
</div>
@ -60,7 +60,7 @@ function MenuAuthMgt(props) {
if(!mutListTag.length) mutListTag.push(<p className="no_data" key="0">검색된 결과가 없습니다.</p>); //
roleList.forEach(function (item, index) {
headerTag.push(<span>{item.itemNm}</span>)
headerTag.push(<span className={"checkboxDiv"}>{item.itemNm}</span>)
});
setListTag(mutListTag);
@ -128,7 +128,7 @@ function MenuAuthMgt(props) {
<span>메뉴 이름</span>
<span>부모 메뉴</span>
{roleHeader}
<span></span>
<span className={"saveBtnDiv"}></span>
</div>
<div className="result">
{listTag}

View File

@ -128,11 +128,13 @@ public interface TnCmtEventRepository extends JpaRepository<TnCmtEvent, TnCmtEve
"FROM" + " \n" +
" tn_cmt_event tce" + " \n" +
"WHERE" + " " +
" tce.use_yn = 'Y'" + " \n" +
" AND" + " \n" +
" TO_TIMESTAMP(" + " \n" +
" :sSearchDate," + " \n" +
" 'YYYYMM'" + " \n" +
" ) AT TIME ZONE 'UTC+9' <= tce.evt_start_dt AND" + " \n" +
" ) AT TIME ZONE 'UTC+9' <= tce.evt_start_dt" + " \n" +
" AND" + " \n" +
" tce.evt_start_dt < TO_TIMESTAMP(" + " \n" +
" :sSearchDate," + " \n" +
" 'YYYYMM'" + " \n" +