添加资质信息

This commit is contained in:
wangxiaowei
2026-02-11 17:17:45 +08:00
parent a84d817bfc
commit 40f1307161
8 changed files with 493 additions and 94 deletions

View File

@ -175,4 +175,14 @@ export function removeImageUrlPrefix(file: any) {
return item.url.replace(import.meta.env.VITE_UPLOAD_IMAGE_URL, '')
})
return fileList
}
/**
* 预览图片
*/
export function previewImage(current: string, urls: string[]) {
uni.previewImage({
current,
urls
})
}