You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// @ts-nocheck
|
|
import { processFile, type ProcessFileOptions } from '@/uni_modules/lime-file-utils'
|
|
|
|
/**
|
|
* base64转路径
|
|
* @param {Object} base64
|
|
*/
|
|
export function base64ToPath(base64: string, filename: string | null = null):Promise<string> {
|
|
return new Promise((resolve,reject) => {
|
|
processFile({
|
|
type: 'toDataURL',
|
|
path: base64,
|
|
filename,
|
|
success(res: string){
|
|
resolve(res)
|
|
},
|
|
fail(err){
|
|
reject(err)
|
|
}
|
|
} as ProcessFileOptions)
|
|
})
|
|
}
|