|
@@ -5,7 +5,6 @@ require(['config'], function() {
|
5
|
5
|
});
|
6
|
6
|
});
|
7
|
7
|
|
8
|
|
-console.log(CONN_KEY);
|
9
|
8
|
/********************************************************
|
10
|
9
|
--------------------------------------------------------
|
11
|
10
|
- Object 목록 -
|
|
@@ -47,11 +46,13 @@ function viewAppInfo(cellvalue, options, rowObject) {
|
47
|
46
|
/*앱버전 클릭 발생 이벤트 함수*/
|
48
|
47
|
function clickVer(num) {
|
49
|
48
|
let ids = $(SYSTEM07010_GRID_ID).jqGrid('getDataIDs');
|
|
49
|
+ console.log(num);
|
50
|
50
|
for (var i = 0; i < ids.length; i++) {
|
51
|
51
|
if ((num - 1) == i) {
|
52
|
52
|
let rowData = $(SYSTEM07010_GRID_ID).jqGrid('getRowData', ids[i]);
|
53
|
53
|
rowData.appVer = spanId;
|
54
|
54
|
fn_call_popup('biz', 'BIZPOP_VERSION', '#ITP_ASIDE', null, rowData, 'S');
|
|
55
|
+ setTimeout(()=>$('#ITP_BIZPOP_VERSION').modal('show'), 250);
|
55
|
56
|
}
|
56
|
57
|
}
|
57
|
58
|
gridId = 0;
|
|
@@ -105,13 +106,13 @@ const gridColModel = {
|
105
|
106
|
{
|
106
|
107
|
index: 'APP_VER', name: 'appVer',
|
107
|
108
|
label: '앱버전',
|
108
|
|
- width: '10', fixed: false, align: 'center',
|
|
109
|
+ width: '5', fixed: false, align: 'center',
|
109
|
110
|
sortable: false, hidden: false, formatter: viewAppInfo
|
110
|
111
|
},
|
111
|
112
|
{
|
112
|
113
|
index: 'DES_VER', name: 'desVer',
|
113
|
114
|
label: '버전설명',
|
114
|
|
- width: '10', fixed: false, align: 'center',
|
|
115
|
+ width: '18', fixed: false, align: 'center',
|
115
|
116
|
sortable: false, hidden: false
|
116
|
117
|
},
|
117
|
118
|
{
|
|
@@ -123,7 +124,7 @@ const gridColModel = {
|
123
|
124
|
{
|
124
|
125
|
index: 'APP_VER_DEL', name: 'appVerDel',
|
125
|
126
|
label: '삭제',
|
126
|
|
- width: '10', fixed: false, align: 'center',
|
|
127
|
+ width: '3', fixed: false, align: 'center',
|
127
|
128
|
sortable: false, hidden: false, formatter: delAppInfo
|
128
|
129
|
}
|
129
|
130
|
],
|
|
@@ -214,6 +215,7 @@ let listObj = {
|
214
|
215
|
const key = {};
|
215
|
216
|
var popFn = function(result) {
|
216
|
217
|
listObj.init();
|
|
218
|
+ gridId = 0;
|
217
|
219
|
}
|
218
|
220
|
|
219
|
221
|
fn_call_popup('biz', 'BIZPOP_VERSION', '#ITP_ASIDE', popFn, null, 'S');
|