관리자 퍼블 업뎃

thkim
Lim\jun 2024-07-04 17:22:09 +09:00
parent 856494948e
commit 4837200e37
2 changed files with 8 additions and 9 deletions

View File

@ -315,15 +315,14 @@
.BRD004 .result .list_item > div:nth-child(5) {width: 100px;} .BRD004 .result .list_item > div:nth-child(5) {width: 100px;}
.BRD004 .result .list_item > div:nth-child(6) {width: 140px;} .BRD004 .result .list_item > div:nth-child(6) {width: 140px;}
/* 사이트관리 미리보기 게시판 */ /* 관리자 - 건설기준연구 관리 */
.BRD005 .head > span:nth-child(1) {width: 60px;} .BRD005 .head > span:nth-child(1) {width: 60px;}
.BRD005 .head > span:nth-child(3) {width: 100px;} .BRD005 .head > span:nth-child(3) {width: 200px;}
.BRD005 .head > span:nth-child(4) {width: 120px;} .BRD005 .head > span:nth-child(4) {width: 300px;}
.BRD005 .head > span:nth-child(5) {width: 100px;}
.BRD005 .result .list_item > div:nth-child(1) {width: 60px;} .BRD005 .result .list_item > div:nth-child(1) {width: 60px;}
.BRD005 .result .list_item > div:nth-child(3) {width: 100px;} .BRD005 .result .list_item > div:nth-child(2) {text-overflow: ellipsis; white-space: nowrap; overflow: hidden;}
.BRD005 .result .list_item > div:nth-child(4) {width: 120px;} .BRD005 .result .list_item > div:nth-child(3) {width: 200px;}
.BRD005 .result .list_item > div:nth-child(5) {width: 100px;} .BRD005 .result .list_item > div:nth-child(4) {width: 300px; text-align: left;}
/* 게시판 관리 */ /* 게시판 관리 */
.BRD006 .head > span:nth-child(1) {width: 160px;} .BRD006 .head > span:nth-child(1) {width: 160px;}

View File

@ -164,7 +164,7 @@ function StandardResearch(props) {
{/* <!-- 게시판목록 --> */} {/* <!-- 게시판목록 --> */}
<div className="board_list BRD008"> <div className="board_list BRD005">
<div className="head"> <div className="head">
<span>번호</span> <span>번호</span>
<span>연구명</span> <span>연구명</span>
@ -182,7 +182,7 @@ function StandardResearch(props) {
{list && list.map((it)=>( {list && list.map((it)=>(
<div className='list_item' key={it.id}> <div className='list_item' key={it.id}>
<div>{it.number}</div> <div>{it.number}</div>
<div className="al"><Link to={URL.ADMIN__CONTENTS__STANDARDS_RESEARCH__MODIFY} state={{rsId: it.id} } key={it.id} className='title' >{it.title}</Link></div> <div className="al"><Link to={URL.ADMIN__CONTENTS__STANDARDS_RESEARCH__MODIFY} state={{rsId: it.id} } key={it.id} className='title' className={"text-222"}>{it.title}</Link></div>
<div>{it.researchStartDate} ~ {it.researchEndDate}</div> <div>{it.researchStartDate} ~ {it.researchEndDate}</div>
<div>{it.director}</div> <div>{it.director}</div>
</div> </div>