improve image sharing function

This commit is contained in:
2025-02-20 23:03:25 +08:00
parent 3995884adc
commit 2063a99c83
20 changed files with 1150 additions and 550 deletions

View File

@@ -98,7 +98,7 @@ const upload = useStore().upload;
async function getAlbumList(id: number) {
const res: any = await queryAlbumDetailListApi(id, upload.storageSelected[0], upload.storageSelected[1]);
const res: any = await queryAlbumDetailListApi(id, upload.storageSelected?.[0], upload.storageSelected?.[1]);
if (res && res.code === 200) {
albumList.value = res.data.records;
}