var STATUS ={ "0":"未提交", "1":"已提交", "2":"审核通过", "3":"审核拒绝" }; var PAY ={ "1":"手工记录", "2":"在线缴费" };
{field : 'status',title : '审核状态',width : $(this).width() * 0.08,align : 'center', formatter:function(value,rec,index){ return STATUS[value]; } }, {field : 'paySource',title : '缴费方式',width : $(this).width() * 0.08,align : 'center', formatter : function(value, rec, index) { return PAY[value]; } }, {field : 'updateName',title : '最后操作人',width : $(this).width() * 0.10,align : 'center'}, {field : 'updateTime',title : '最后操作时间',width :$(this).width() * 0.10,align : 'center', formatter : function(value, rec, index) { return backendCommon.dateTimeToLocalStringWithSeconds(value); } },