Преглед на файлове

모바일 목록 처리 수정

juney преди 2 години
родител
ревизия
50e4487d8d

+ 1 - 1
src/main/webapp/mobile/js/app/mpomng/ITP_MPOMNG02010.js

@@ -185,7 +185,7 @@ let mobContentObj = {
185 185
 			var errFn = function() { _this.isSearch = false;};
186 186
 			const param = $('#ITP_FORM_MPOMNG02010_LIST_SEARCH').serializeObject();
187 187
 			param.gridPage = ++this.listPage;
188
-			param.gridSize = this.listSize;
188
+			param.gridSize = mobile_list_size;
189 189
 			fn_ajax_call(API_MOBILE_GRID_LIST, JSON.stringify(param), callbackFn, 'POST', errFn);
190 190
 		},
191 191
 		action: function () {

+ 1 - 1
src/main/webapp/mobile/js/app/mrtnmng/ITP_MRTNMNG02010.js

@@ -189,7 +189,7 @@ let mobContentObj = {
189 189
 			var errFn = function() { _this.isSearch = false;};
190 190
 			const param = $('#ITP_FORM_MRTNMNG02010_LIST_SEARCH').serializeObject();
191 191
 			param.gridPage = ++this.listPage;
192
-			param.gridSize = this.listSize;
192
+			param.gridSize = mobile_list_size;
193 193
 			fn_ajax_call(API_MOBILE_GRID_LIST, JSON.stringify(param), callbackFn, 'POST', errFn);
194 194
 		},
195 195
 	},

+ 1 - 0
src/main/webapp/mobile/js/config.js

@@ -1,6 +1,7 @@
1 1
 //JS버전
2 2
 var today = new Date();
3 3
 const js_version = itp_fn_date_format(today);
4
+const mobile_list_size = 10;
4 5
 
5 6
 const CMD_PAGE_MOVE_PARAM = 'PAGE_MOVE_PARAM';
6 7