Commit 96e2a1f0 authored by chenqikuai's avatar chenqikuai

fix

parent 3c06b46c
...@@ -104,17 +104,16 @@ const handleChange = async (e: Event) => { ...@@ -104,17 +104,16 @@ const handleChange = async (e: Event) => {
loading.value = false; loading.value = false;
return; return;
} }
const res = await handleBigFileUpload(file!); const res = await copyrightUploadFile(file!);
res.copyrightMerge().then(() => {}); fileName = file?.name!;
// fileName = file?.name!; name.value = file?.name!;
// name.value = file?.name!; if (res && res.code === 200) {
// if (res && res.code === 200) { emit("update:modelValue", {
// emit("update:modelValue", { ...res.data,
// ...res.data, });
// }); }
// } loading.value = false;
// loading.value = false; formItem?.validate("change");
// formItem?.validate("change");
}; };
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment