🎨 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

@@ -55,6 +55,10 @@ const imageList = ref<any[]>([]);
const getRecentImages = async () => {
if (!upload.storageSelected?.[0] || !upload.storageSelected?.[1]) {
message.error("请选择存储配置");
return;
}
imageStore.imageListLoading = true;
const res: any = await queryRecentImagesApi(upload.storageSelected?.[0], upload.storageSelected?.[1]);
if (res && res.code === 200) {