|
|
@ -315,7 +315,12 @@ Date Author Description
|
|
|
|
$$Control.load(1);
|
|
|
|
$$Control.load(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function render$$List(data) {}
|
|
|
|
function render$$List(data) {
|
|
|
|
|
|
|
|
if($$Control._paginationInfo.pagingType != "scroll"){
|
|
|
|
|
|
|
|
GRID.clear();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
GRID.appendRows(data.contents);
|
|
|
|
|
|
|
|
}
|
|
|
|
/*******************************
|
|
|
|
/*******************************
|
|
|
|
* Biz function
|
|
|
|
* Biz function
|
|
|
|
*******************************/
|
|
|
|
*******************************/
|
|
|
@ -713,20 +718,8 @@ Date Author Description
|
|
|
|
minBodyHeight : 150
|
|
|
|
minBodyHeight : 150
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const gridDatasource = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
api: {
|
|
|
|
|
|
|
|
readData: {
|
|
|
|
|
|
|
|
url: fimsApiUrl.FIND_CRACKDOWNS
|
|
|
|
|
|
|
|
,serializer: (params) => {
|
|
|
|
|
|
|
|
return getPageParam(fnBiz.getParams(), params);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const initGrid = () => {
|
|
|
|
const initGrid = () => {
|
|
|
|
ARR_GRID[0] = TuiGrid.of(gridOptions, gridDatasource);
|
|
|
|
ARR_GRID[0] = TuiGrid.of(gridOptions, null);
|
|
|
|
|
|
|
|
|
|
|
|
const options = $.extend(gridOptions, gridOptions.columns[1].renderer = null, true);
|
|
|
|
const options = $.extend(gridOptions, gridOptions.columns[1].renderer = null, true);
|
|
|
|
ARR_GRID[1] = TuiGrid.of({...options, el: 'gridb', rowHeaders: ['checkbox','rowNum']}, gridDatasource);
|
|
|
|
ARR_GRID[1] = TuiGrid.of({...options, el: 'gridb', rowHeaders: ['checkbox','rowNum']}, gridDatasource);
|
|
|
|