const formData = new FormData()
formData.append("old_file", dataMap.old_file?.[0]?.raw)
formData.append("new_file", dataMap.new_file?.[0]?.raw)
formData.append("type", dataMap.type)
service({
method: "post",
url: `/dict_admin/api/dictionary/check_keyword_file`,
headers: {
"Content-Type": "multipart/form-data ",
},
data: formData,
})