관리자 퍼블 업뎃

thkim
Lim\jun 2024-07-04 15:58:33 +09:00
parent aeca739cd1
commit ad16d765da
2 changed files with 7 additions and 7 deletions

View File

@ -57,7 +57,7 @@ function StandardCodeMgt(props) {
<div><Image src={SERVER_URL+"/admin/config/about-site-mgt/get-site-image?fileGrpId=" + item.fileGrpId} alt="이미지" onClick={(e) => window.open(e.target.src)} width={"150"}/></div>
<div>{item.siteOrder}</div>
<div>{item.useYn}</div>
<div><button className={"btn btn_blue_h31 px-1"} onClick={()=>{editPartnerSite(item)}}>수정</button></div>
<div><button className={"btn btn_skyblue_h31 px-1"} onClick={()=>{editPartnerSite(item)}}>수정</button></div>
</div>
);
});

View File

@ -262,16 +262,16 @@ function AboutSiteModal({props, reloadFunction}) {
</dl>
{/* <!-- 버튼영역 --> */}
<Row className="board_btn_area">
<Row className="pt-3">
<Col>
<button type={"button"} className="btn btn_blue_h32" onClick={()=>{reloadFunction()}}>목록</button>
{/*<button type={"button"} className="btn btn_skyblue_h32" onClick={()=>{reloadFunction()}}>목록</button>*/}
{modeInfo.mode === CODE.MODE_MODIFY &&
<button type={"button"} className="btn btn_red_h32" onClick={()=>{deletePartnerSite(props)}}>삭제</button>
}
</Col>
<Col className="text-end">
<button type="submit" className="btn btn_skyblue_h32">저장
<button type="submit" className="btn btn_blue_h32">저장
</button>
{modeInfo.mode === CODE.MODE_MODIFY &&
<button type={"button"} className="btn btn_red_h32" onClick={()=>{deletePartnerSite(props)}}>삭제</button>
}
</Col>
</Row>
{/* <!--// 버튼영역 --> */}