|  | @@ -44,6 +44,7 @@ $(document).ready(function() {
 | 
	
		
			
				|  |  |              html.push(`<tr><td><input type="checkbox" name="bd-check" fid="${file.id}"></td>`);
 | 
	
		
			
				|  |  |              const editHtml = file.canEdit ? '<a href="javascript: void(0);" class="mr-1"><i class="fa fa-pencil fa-fw"></i></a>' : '';
 | 
	
		
			
				|  |  |              const viewHtml = file.viewpath ? `<a href="${file.viewpath}" class="mr-1"><i class="fa fa-eye fa-fw"></i></a>` : '';
 | 
	
		
			
				|  |  | +            console.log(viewHtml);
 | 
	
		
			
				|  |  |              const downHtml = `<a href="javascript: void(0);" onclick="AliOss.downloadFile('${file.filepath}', '${file.filename + file.fileext}')" class="mr-1"><i class="fa fa-download fa-fw"></i></a>`;
 | 
	
		
			
				|  |  |              const delHtml = file.canEdit ? '<a href="javascript: void(0);" class="mr-1"><i class="fa fa-trash-o fa-fw"></i></a>' : '';
 | 
	
		
			
				|  |  |              html.push(`<td><div class="d-flex justify-content-between align-items-center table-file"><div>${file.filename}${file.fileext}</div><div class="btn-group-table" style="display: none;">${editHtml}${viewHtml}${downHtml}${delHtml}</div></div></td>`);
 | 
	
	
		
			
				|  | @@ -207,9 +208,9 @@ $(document).ready(function() {
 | 
	
		
			
				|  |  |                  filingObj.refreshFilesTable();
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |              if (filingObj.curFiling.source_node.filing_type === 5) {
 | 
	
		
			
				|  |  | -                $('[href=#rela-file]').parent().show();
 | 
	
		
			
				|  |  | +                $('#rela-file-btn').show();
 | 
	
		
			
				|  |  |              } else {
 | 
	
		
			
				|  |  | -                $('[href=#rela-file]').parent().hide();
 | 
	
		
			
				|  |  | +                $('#rela-file-btn').hide();
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          prePage() {
 |