🎨 update

This commit is contained in:
2025-03-22 01:44:22 +08:00
parent 0068d36ac2
commit 86053b6bd8
30 changed files with 774 additions and 98 deletions

View File

@@ -85,6 +85,10 @@ const upload = useStore().upload;
async function getImageList(id: number) {
if (!upload.storageSelected?.[0] || !upload.storageSelected?.[1]) {
message.error("请选择存储配置");
return;
}
imageStore.imageListLoading = true;
const res: any = await queryAlbumDetailListApi(id, upload.storageSelected?.[0], upload.storageSelected?.[1], parseInt(route.query.type as string));
if (res && res.code === 200) {