FAISP/src/main/resources/static/js/publicBoard/notice.js

15 lines
403 B
JavaScript
Raw Normal View History

2022-09-19 09:20:49 +00:00
let files = [];
$(document).on('click', '#addNoticeBtn', function (){
getEditModal(null, "PLB001")
})
$(document).on('click', '.planTr', function (){
$(".trChkBox").prop("checked", false);
$(this).find(".trChkBox").prop("checked", true);
getViewModal(Number($(this).find(".planKey").val()), "PLB001");
})
$(document).on('click', '#saveBtn', function (){
savePublicBoard("noticeEditForm")
})