발주기관 계정 등록 이름 maxlenth 설정, 페이지이동시 계정등록 버튼 사라짐 보완
parent
1fc72a6152
commit
ea85ae31c8
|
|
@ -566,7 +566,7 @@ button {
|
|||
<tr>
|
||||
<th class="th-head">이름</th>
|
||||
<td class="t-left td_client_nm">
|
||||
<input name="text" type="text" class="client_nm" id="client_nm" value="" placeholder="이름을 입력해주세요" onChange="validEle(this)">
|
||||
<input name="text" type="text" class="client_nm" id="client_nm" value="" placeholder="이름을 입력해주세요" maxlength="10" onChange="validEle(this)">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -110,7 +110,41 @@ $(function(){
|
|||
searchTitle = searchTitle == "" ? "0" : searchTitle;
|
||||
$("#searchTitle").val(searchTitle);
|
||||
});
|
||||
|
||||
//발주기관 등록
|
||||
function addClientPopup() {
|
||||
var url = context + "/admins/client/05_addUser.do";
|
||||
addUser = window.open(url, 'addClient','scrollbars=no,titlebar=no,width=500, height=680',true);
|
||||
addUser.focus();
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
/* button reset */
|
||||
button {
|
||||
border: none;
|
||||
transition: .2s;
|
||||
}
|
||||
/* 계정등록 버튼 */
|
||||
.btn-container {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.btn-container button {
|
||||
width: 115px;
|
||||
height: 30px;
|
||||
background-color: #255aab;
|
||||
border-radius: 18px;
|
||||
font-size: 15px;
|
||||
color: #fff;
|
||||
font-weight: 400;
|
||||
line-height: 30px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.btn-container button:hover {
|
||||
background-color: #70a9ff;
|
||||
}
|
||||
/* 계정등록 버튼 END */
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form id="searchForm" name="searchForm" method="post">
|
||||
|
|
@ -196,6 +230,9 @@ $(function(){
|
|||
<!-- END : 네비게이션 ---------------------------------------------------------------------------->
|
||||
</tr>
|
||||
</table>
|
||||
<div class="btn-container">
|
||||
<button type="button" onClick="javascript:addClientPopup()">계정등록</button>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue