|
@@ -26,6 +26,11 @@ let mobPageObj = {
|
26
|
26
|
fn_make_select(CODE_LIST, $(this).data('select-code'), $(this).attr('id'));
|
27
|
27
|
}
|
28
|
28
|
});
|
|
29
|
+
|
|
30
|
+ // 조회일자 지정
|
|
31
|
+ $('#ITP_MOBILE_MLOANMNG01011 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
|
|
32
|
+ $('#ITP_FORM_MLOANMNG01011_VIEW_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('M', -1));
|
|
33
|
+ $('#ITP_FORM_MLOANMNG01011_VIEW_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
|
29
|
34
|
|
30
|
35
|
$('input:hidden[id$="_BRAND_ID"]').val(fn_make_user_info.get('brandId'));
|
31
|
36
|
$('input:hidden[id$="_STORE_ID"]').val(fn_make_user_info.get('storeId'));
|
|
@@ -119,7 +124,7 @@ let mobContentObj = {
|
119
|
124
|
_this.totPage = result.gridTotal;
|
120
|
125
|
$.each(result.gridRows, function (i, item) {
|
121
|
126
|
$('#ITP_LIST_MLOANMNG01011_VIEW_ITEM_AREA .panel-group').append($('#ITP_LIST_MLOANMNG01011_VIEW_ITEM_ROWCOPY').html());
|
122
|
|
- var $li = $('#ITP_LIST_MLOANMNG01011_VIEW_ITEM_AREA .panel-group > .list-row:last');
|
|
127
|
+ var $li = $('#ITP_LIST_MLOANMNG01011_VIEW_ITEM_AREA .panel-group > .item-row:last');
|
123
|
128
|
$li.find('.fnLoanRegDt').text(item.loanRegDt);
|
124
|
129
|
$li.find('.fnDpstPayDvsnNm').text(item.dpstPayDvsnNm);
|
125
|
130
|
$li.find('.fnDstpAmt').text(item.dstpAmt);
|
|
@@ -132,8 +137,6 @@ let mobContentObj = {
|
132
|
137
|
const param = $('#ITP_FORM_MLOANMNG01011_VIEW_SEARCH').serializeObject();
|
133
|
138
|
param.gridPage = ++this.listPage;
|
134
|
139
|
param.gridSize = this.listSize;
|
135
|
|
- param.fromDt = CommonObj.onlyNumber(param.fromDt);
|
136
|
|
- param.toDt = CommonObj.onlyNumber(param.toDt);
|
137
|
140
|
console.log(JSON.stringify(param));
|
138
|
141
|
fn_ajax_call(API_MOBILE_HISTORY, JSON.stringify(param), callbackFn, 'POST', errFn);
|
139
|
142
|
}
|