修复冲突

This commit is contained in:
huangdeliang
2021-03-11 18:51:29 +08:00
parent fd05af8a6b
commit c6a3a9da2e
3 changed files with 2 additions and 265 deletions

View File

@ -142,7 +142,7 @@ export function downFileByBlob(blobData, fileName){
* base64转blob对象
*/
export function base64ToBlob(base64) {
console.log(base64);
// console.log(base64);
var parts = base64.split(";base64,");
var contentType = parts[0].split(":")[1];
var raw = window.atob(parts[1]);