/**
*
* 根据条件,控制行隐藏
* @param o
*/
function hideRowFile(o){
if(o=='0' || o==''){
$($('.excelMainTable.tablefixed').children('tbody').children('tr')[15]).show();
$($('.excelMainTable.tablefixed').children('tbody').children('tr')[16]).show();
}else{
$($('.excelMainTable.tablefixed').children('tbody').children('tr')[15]).hide();
$($('.excelMainTable.tablefixed').children('tbody').children('tr')[16]).hide();
}
}