feat(for): for

This commit is contained in:
ex_zhangwenlei@exiot.cmcc
2024-01-09 01:03:42 +08:00
parent bea54865ea
commit f34e850ff0
26 changed files with 500 additions and 404 deletions

View File

@@ -14,9 +14,9 @@ const imageDbStore = localforage.createInstance({
const imgUrl=ref('')
const getImageStoreItem=async (item:any)=>{
const getImageStoreItem=async (item:any):Promise<string>=>{
const key=item.id;
const image=await imageDbStore.getItem(key)
const image=await imageDbStore.getItem(key) as string
return image
}