○ 군산동초병설유치원 교사 이기숙, 군산문화초병설유치원 교사 송지숙‧조미정, 신흥초병설유치원 교사 김연남, 아리울초병설유치원 교사 이혜련, 나포초병설유치원 교사 박은령, 당북초병설유치원 교사 백미영, 대야초병설유치원 원교사 송은옥, 발산초병설유치원 교사 임혜영, 신시도초병설유치원 교사 박미진, 옥구초병설유치원 교사 최경미, 창오초병설유치원교사 김선
▲ 타시·군 전입(3명)
○ 군산아리울초병설유치원 교사 최윤정, 지곡초병설유치원 교사 전보현, 옥봉초병설유치원 교사 이민지
○ 개정 교사 김오현·서진·정영윤·최용선, 군산 교사 김민선·김정화·김현자·남수영·오두희·이송미·이정균·이현경·전민정·최경아, 경포 교사 김명진·최주영, 구암 교사 박지현·오승현·최슬기, 군산남초 교사 홍귀성, 내흥 교사 노승수, 군산동 교사 문정현·전혜영, 미성 교사 송민혁·송수진·최우년, 군산미장 교사 김정희' +
'
' +
' ' +
'' +
'
' +
'' +
'' +
'',
buttons: {
formSubmit: {
text: '확인',
btnClass: 'btn-blue',
action: function () {
var efile = this.$content.find('.efile').val();
if(!efile){
$.alert('비밀번호를 입력하세요.');
return false;
}
$.passAjax('modeFrm');
}
},
cancel: function () {
text: '취소'
//close
},
},
onContentReady: function () {
// bind to events
var jc = this;
this.$content.find('form').on('submit', function (e) {
// if the user submits the form by pressing enter in the field.
e.preventDefault();
jc.$$formSubmit.trigger('click'); // reference the button and click it
});
}
});
}else {
var ok_no = confirm("댓글을 삭제하시겠습니까?");
if(ok_no == true) {
$.admAjax(thisiidx);
window.location.reload();
}else { return; }
}
if(thismode == 'edit') {
}else if(thismode == 'del') {
}
});
// 비번확인
$.passAjax = function(frm) {
var qString = $("form[name="+ frm +"]").serialize();
//var qString = new FormData();
//qString.append("spotIdx", $("#sIdx").val());
//qString.append("areaSection", $("#sArea").val());
//qString.append("excelFile[]", $("#excelFile")[0].files[0]);
//console.log(qString);
$.ajax({
type: "POST",
url: 'modules/passAjax.php',
async: true,
dataType : "json",
cache : false,
timeout : 30000,
data: qString,
success: function(obj) {
if(obj.mode == 'edit-ok') {
//location.href=obj.url;
window.location.reload();
}else if(obj.mode == 'del-ok') {
//location.href=obj.url;
window.location.reload();
}else if(obj.mode == 'fail') {
//console.log(obj);
alert('비밀번호가 올바르지 않습니다.');
}else {
console.log(obj);
}
},
error : function(request, status, error) { //== 통신 오류
console.log("code : " + request.status + "\r\nmessage : " + request.reponseText);
},
beforeSend: function() { //== 통신 시작
},
complete: function() { //== 통신 완료
}
});
}
// 관리자삭제
$.admAjax = function(idx) {
//var qString = new FormData();
//qString.append("spotIdx", $("#sIdx").val());
//qString.append("areaSection", $("#sArea").val());
//qString.append("excelFile[]", $("#excelFile")[0].files[0]);
//console.log(qString);
var qString = "idx=" + idx;
//console.log(qString);
$.ajax({
type: "POST",
url: 'modules/admAjax.php',
async: true,
dataType : "json",
cache : false,
timeout : 30000,
data: qString,
success: function(obj) {
if(obj.mode == 'del-ok') {
//location.href=obj.url;
window.location.reload();
}else if(obj.mode == 'del-no') {
alert('올바른 방법으로 삭제하세요.');
}else {
console.log(obj);
}
},
error : function(request, status, error) { //== 통신 오류
console.log("code : " + request.status + "\r\nmessage : " + request.reponseText);
},
beforeSend: function() { //== 통신 시작
},
complete: function() { //== 통신 완료
}
});
}
// 대댓글
$(document).on("click",".commentsBtn",function(){
let thispidx = $(this).data('pidx');
let thisiidx = $(this).data('iidx');
let thismode = $(this).data('imode');
$.confirm({
title: '관리자 댓글 입력',
boxWidth: '30%',
useBootstrap: false,
content: '' +
'',
buttons: {
formSubmit: {
text: '확인',
btnClass: 'btn-blue',
action: function () {
var efile = this.$content.find('.efile').val();
if(!efile){
$.alert('관리자 댓글 입력하세요.');
return false;
}
let sRst = $.registerComments('admFrm');
if(sRst == 'success') {
alert('관리자 댓글 등록 완료');
window.location.reload();
}else if(sRst == 'fail') {
alert('관리자 댓글 등록 실패');
}else {
alert('오류:관리자에게 문의요망');
}
}
},
cancel: function () {
text: '취소'
//close
},
},
onContentReady: function () {
// bind to events
var jc = this;
this.$content.find('form').on('submit', function (e) {
// if the user submits the form by pressing enter in the field.
e.preventDefault();
jc.$$formSubmit.trigger('click'); // reference the button and click it
});
}
});
if(thismode == 'edit') {
}else if(thismode == 'del') {
}
});