mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-08 08:07:46 +08:00
修复保存图片错误
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user