This commit is contained in:
2025-09-25 14:40:31 +08:00
parent 2a3a23a12d
commit bee4ded844

View File

@ -91,7 +91,7 @@ const actionUrl = computed(() => {
} }
}); });
const emits = defineEmits(["update:modelValue", "handleChange"]); const emits = defineEmits(["update:modelValue"]);
//获取后缀 //获取后缀
const getSuffix = (fileName) => { const getSuffix = (fileName) => {
@ -170,7 +170,6 @@ const handlerSuccess = (res, file) => {
arr.push({url:res.data,name:file.name}); arr.push({url:res.data,name:file.name});
} }
emits("update:modelValue", arr); emits("update:modelValue", arr);
emits("handleChange", props.modelValue);
}; };
const handleExceed = (files, fileList) => { const handleExceed = (files, fileList) => {