|  |  | @@ -210,15 +210,16 @@ export default { | 
		
	
		
			
			|  |  |  | }); | 
		
	
		
			
			|  |  |  | }, | 
		
	
		
			
			|  |  |  | async downloadFun(blobFile, fileName) { | 
		
	
		
			
			|  |  |  | let blob = new Blob([blobFile], { | 
		
	
		
			
			|  |  |  | type: 'application/octet-stream;charset=UTF-8' | 
		
	
		
			
			|  |  |  | }); | 
		
	
		
			
			|  |  |  | console.log(blob); | 
		
	
		
			
			|  |  |  | // let blob = new Blob([blobFile], { | 
		
	
		
			
			|  |  |  | //   type: 'application/octet-stream;charset=UTF-8' | 
		
	
		
			
			|  |  |  | // }); | 
		
	
		
			
			|  |  |  | // console.log(blob); | 
		
	
		
			
			|  |  |  | if (window.navigator.msSaveOrOpenBlob) { | 
		
	
		
			
			|  |  |  | navigator.msSaveBlob(blob, fileName); | 
		
	
		
			
			|  |  |  | } else { | 
		
	
		
			
			|  |  |  | const reader = new FileReader(); | 
		
	
		
			
			|  |  |  | reader.readAsDataURL(blob); | 
		
	
		
			
			|  |  |  | // reader.readAsDataURL(blob); | 
		
	
		
			
			|  |  |  | reader.readAsDataURL(blobFile); | 
		
	
		
			
			|  |  |  | reader.onloadend = function () { | 
		
	
		
			
			|  |  |  | const base64Data = reader.result; | 
		
	
		
			
			|  |  |  | const link = document.createElement('a'); | 
		
	
	
		
			
				|  |  | 
 |