|  | @@ -120,7 +120,15 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','editable'], function
 | 
	
		
			
				|  |  |                              operate:'=',
 | 
	
		
			
				|  |  |                              searchList: $.getJSON("teacher/task/selectlist")
 | 
	
		
			
				|  |  |                          },
 | 
	
		
			
				|  |  | -                        {field: 'total_score', title: __('Total_score'),operate:false},
 | 
	
		
			
				|  |  | +                        {field: 'total_score', title: __('Total_score'),operate:false,
 | 
	
		
			
				|  |  | +                            formatter: function(value, row,index) {
 | 
	
		
			
				|  |  | +                                if(value<60){
 | 
	
		
			
				|  |  | +                                    return '<span class="text-danger">'+value+'</span>';
 | 
	
		
			
				|  |  | +                                }else{
 | 
	
		
			
				|  |  | +                                    return '<span class="text-success">'+value+'</span>';
 | 
	
		
			
				|  |  | +                                }
 | 
	
		
			
				|  |  | +                            }
 | 
	
		
			
				|  |  | +                        },
 | 
	
		
			
				|  |  |                          {field: 'exam_duration', title: __('考试时长(秒)'),operate: "between",visible:false},
 | 
	
		
			
				|  |  |                          {field: 'exam_duration_text', title: __('考试时长'),operate: false},
 | 
	
		
			
				|  |  |                          {field: 'starttime', title: __('开始考试时间'), formatter: Table.api.formatter.datetime,datetimeFormat: 'HH:mm:ss', operate: 'RANGE', addclass: 'datetimerange', sortable: true},
 |