function init_userData(companyId,deptCode){
if(deptCode==null ||companyId==null ){
return;
}
$.ajax({
url: _ROOT_PATH+'system/company/com/pc/v2/getEmpListByDeptCodeAndComId',
data: {companyId: companyId,deptCode:deptCode,random:Math.random()},
type: 'post',
dataType: 'json',
success: function (res) {
console.info(res);
$("#userInfos").iDatagrid({data:res});
}
});
}