|
@@ -24,7 +24,7 @@ require(['config'], function() {
|
24
|
24
|
// 조회
|
25
|
25
|
itp_fn_MAIN_NOTICE_search();
|
26
|
26
|
|
27
|
|
- }, 500);
|
|
27
|
+ }, 300);
|
28
|
28
|
|
29
|
29
|
});
|
30
|
30
|
});
|
|
@@ -233,7 +233,14 @@ var itp_fn_MAIN_NOTICE_search = function() {
|
233
|
233
|
const formId = '#ITP_FORM_MAIN_SEARCH';
|
234
|
234
|
let param = $(formId).serializeObject();
|
235
|
235
|
var searhFn = function(result) {
|
236
|
|
- console.log('>>>>>> ' + JSON.stringify(result));
|
|
236
|
+ $.each(result.gridRows, function(idx, value) {
|
|
237
|
+
|
|
238
|
+ $('#ITP_NOTE_BAR').append($('#ITP_NOTE_ROWCOPY').val());
|
|
239
|
+ $('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnTitle').html(value.nticeTitl);
|
|
240
|
+ $('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnDate').html(value.addDt);
|
|
241
|
+ $('#ITP_NOTE_BAR .itp_side_bar_note:last').find('.fnContents').html(value.nticeDesc);
|
|
242
|
+
|
|
243
|
+ });
|
237
|
244
|
};
|
238
|
245
|
fn_ajax_call(NTICE_DETAIL_GRID_LIST, JSON.stringify(param), searhFn, 'POST');
|
239
|
246
|
};
|