검찰연계 관리 수정
This commit is contained in:
parent
224e0d1df0
commit
de36eb9aab
@ -32,15 +32,22 @@
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
|
||||
|
||||
//엔터 이벤트
|
||||
$("#searchKeyword").on("keyup",function(key){
|
||||
if(key.keyCode==13) {
|
||||
linkPage(1);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
function fncGoList(){
|
||||
function fncGoList() {
|
||||
linkPage(1);
|
||||
}
|
||||
|
||||
function linkPage(pageNo){
|
||||
function linkPage(pageNo) {
|
||||
var listForm = document.listForm;
|
||||
listForm.pageIndex.value = pageNo;
|
||||
listForm.searchCondition.value = $('#searchCondition').val();
|
||||
@ -49,13 +56,13 @@ function linkPage(pageNo){
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function fncCreate(){
|
||||
function fncCreate() {
|
||||
var listForm = document.listForm;
|
||||
listForm.action = "<c:url value='/kccadr/adrpr/adrPrsctLinkRegist.do'/>";
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function fncGoDetail(prsctSeq){
|
||||
function fncGoDetail(prsctSeq) {
|
||||
var listForm = document.listForm;
|
||||
listForm.prsctSeq.value = prsctSeq;
|
||||
listForm.action = "<c:url value='/kccadr/adrpr/adrPrsctLinkRegist.do'/>";
|
||||
@ -123,7 +130,7 @@ function openExcelUploadPop() {
|
||||
<option value="5" ${adrPrsctLinkVO.searchCondition eq '5' ? 'selected' : '' }>배당일</option>
|
||||
</select>
|
||||
|
||||
<input type="text" id=searchKeyword name="searchKeyword" class="search_input" placeholder="검색어를 입력하세요" value="<c:out value='${adrPrsctLinkVO.searchKeyword}'/>">
|
||||
<input type="text" id="searchKeyword" name="searchKeyword" class="search_input" placeholder="검색어를 입력하세요" value="<c:out value='${adrPrsctLinkVO.searchKeyword}'/>">
|
||||
|
||||
|
||||
<p class="tit_text">접수기간</p>
|
||||
|
||||
@ -249,7 +249,7 @@ function getValidCheck() {
|
||||
}
|
||||
|
||||
//목록
|
||||
function goList(){
|
||||
function goList() {
|
||||
var listForm = document.listForm ;
|
||||
listForm.action = "<c:url value='/kccadr/adrpr/adrPrsctLinkList.do'/>";
|
||||
listForm.submit();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user