diff --git a/app/src/utils/file.ts b/app/src/utils/file.ts index d1cac28e..d9dc8ed6 100644 --- a/app/src/utils/file.ts +++ b/app/src/utils/file.ts @@ -1,8 +1,9 @@ export async function saveImageToPhotosAlbum(url: string) { - if (!url) return uni.$u.toast('图片不存在') + if (!url) return uni.$u.toast('图片错误') //#ifdef H5 - uni.$u.$toast('长按图片保存') + uni.$u.toast('长按图片保存') //#endif + //#ifndef H5 try { const res: any = await uni.downloadFile({ url, timeout: 10000 }) await uni.saveImageToPhotosAlbum({ @@ -15,4 +16,5 @@ export async function saveImageToPhotosAlbum(url: string) { } catch (error: any) { uni.$u.toast(error.errMsg || '保存失败') } + //#endif }