|  | @@ -71,11 +71,11 @@ $(document).ready(function() {
 | 
	
		
			
				|  |  |          _getFileHtml(file) {
 | 
	
		
			
				|  |  |              const html = [];
 | 
	
		
			
				|  |  |              html.push(`<tr fid="${file.id}">`);
 | 
	
		
			
				|  |  | -            html.push(`<td><input type="checkbox" name="bd-check" fid="${file.id}"></td>`);
 | 
	
		
			
				|  |  | +            html.push(`<td class="text-center"><input type="checkbox" name="bd-check" fid="${file.id}"></td>`);
 | 
	
		
			
				|  |  |              html.push(`<td fid="${file.id}">${this._getFileNameHtml(file)}</td>`);
 | 
	
		
			
				|  |  | -            html.push(`<td>${file.user_name}</td>`);
 | 
	
		
			
				|  |  | -            html.push(`<td>${moment(file.create_time).format('YYYY-MM-DD HH:mm:ss')}</td>`);
 | 
	
		
			
				|  |  | -            html.push(`<td>${file.fileext_str}</td>`);
 | 
	
		
			
				|  |  | +            html.push(`<td class="text-center">${file.user_name}</td>`);
 | 
	
		
			
				|  |  | +            html.push(`<td class="text-center">${moment(file.create_time).format('YYYY-MM-DD HH:mm:ss')}</td>`);
 | 
	
		
			
				|  |  | +            html.push(`<td class="text-center">${file.fileext_str}</td>`);
 | 
	
		
			
				|  |  |              html.push('</tr>');
 | 
	
		
			
				|  |  |              return html.join('');
 | 
	
		
			
				|  |  |          }
 |