$(this).iCheck('check');
//启用禁用上级编号
$('#OnPar').on('ifUnchecked', function (event) {
$("#tbParBudCode").prop('disabled', true);
$("#tbParBudCode").trigger("chosen:updated");
});
$('#OnPar').on('ifChecked', function (event) {
$("#tbParBudCode").prop('disabled', "");
$("#tbParBudCode").trigger("chosen:updated");
});