25 lines
560 B
JavaScript
25 lines
560 B
JavaScript
|
|
$(document).on('click', '#krcnTab', function (){
|
||
|
|
location.href="/target/ipShipList?siType=KRCN";
|
||
|
|
})
|
||
|
|
|
||
|
|
$(document).on('click', '#krjpruTab', function (){
|
||
|
|
location.href="/target/ipShipList?siType=KRJPRU";
|
||
|
|
})
|
||
|
|
|
||
|
|
$(document).on('click', '#addKRCN', function (){
|
||
|
|
const siType = 'KRCN';
|
||
|
|
$.ajax({
|
||
|
|
url: '/target/ipShipEditModal',
|
||
|
|
data: {siType: siType},
|
||
|
|
type: 'GET',
|
||
|
|
dataType:"html",
|
||
|
|
success: function(html){
|
||
|
|
$("#ipShipModalContent").empty().append(html);
|
||
|
|
$("#ipShipModal").modal('show');
|
||
|
|
|
||
|
|
},
|
||
|
|
error:function(){
|
||
|
|
|
||
|
|
}
|
||
|
|
});
|
||
|
|
})
|