feat: 🚀 批量图片排序

This commit is contained in:
2025-07-17 10:48:59 +08:00
parent e24a4adec6
commit cc894333bf
8 changed files with 607 additions and 223 deletions

View File

@@ -119,7 +119,7 @@ const handleHttpUpload = async (options: UploadRequestOptions) => {
const api = props.api ?? uploadImg;
const result = await api(formData, routerName.value);
if (result?.code === 0) {
if (result?.data?.code === 0) {
const { data } = result;
emit("update:imageUrl", data.path);
}