function setMainNotice(){
const res = HttpPostJson('/main/getMainOwnerNoticeList');
let Mlist = '';
for(let c = 0; c < res.list.length; c++){
let value = res.list[c];
Mlist += '
' +
'' + value.owner_title + '' +
'' + value.reg_date.substr(0, 10) + '' +
''
}
$('.notice-content-ui').html(Mlist);
}
$(function(){
setMainNotice();
$('.notice-content-li').click(function(){
let el = $(this);
let idx = el.data('idx');
location.href = '/Notice/view?idx=' + idx;
});
$('.main-login-search-join-tag').on('click', '.main-info, .main-logout', function(){
var cls = $(this)[0].classList[0];
if(cls == 'main-info'){
location.href = '/member/mypage';
}else if(cls == 'main-logout'){
HttpPostJson('/member/logout');
location.href = 'https://ceo.itgou.co.kr/';
}
});
$('#order-program-download-btn').click(function(){
location.href = '/Download/way';
});
});