{
field : 'CREATE_TIME',
width : fixWidth(0.10),
title : '创建时间',
align : 'center',
hidden: true,
formatter : function(value,rowData, index) {
if(!isEmpty(value)){
var date = new Date(value);
return DateFormat(date,'yyyy-MM-dd hh:mm:ss');
}
return value;
}
}