diff --git a/frontend/src/components/oa/ShareFiles.vue b/frontend/src/components/oa/ShareFiles.vue index fa3b400..059fd9e 100644 --- a/frontend/src/components/oa/ShareFiles.vue +++ b/frontend/src/components/oa/ShareFiles.vue @@ -61,9 +61,7 @@ const onSubmit = async () => { const temp = {...form.value} temp.senderid = temp.senderid.toString() temp.receverid = temp.receverid.map((item:any) => item.toString()) - console.log('temp:',new URLSearchParams(temp)) const res = await fetchPost(apiUrl, new URLSearchParams(temp)) - console.log('res:',res); }