import { UploadFilled } from '@element-plus/icons-vue'
import { acceptList, suffixList, getFileType } from '@/utils/file'
const maxNum = 5
const uploadTip =
'1. 请上传 100MB 以下文件,最多支持上传 ' +
maxNum +
' 个文件。</br> 2. 支持文件格式:pdf, txt, csv, docx, doc, jpg, jpeg, png, xlsx, xls, ppt, pptx, epub, py, java, js, ts, md, json, sh等。</br> 3. 仅在非联网搜索状态下使用。</br> 4. 仅可识别文字。'
const fileList = ref([])
const uploadFileRef = ref(null)
const myEmit = defineEmits(['handleFileShow'])
const handleExceed = (files, fileList) => {
ElMessage.warning(`单次最多只能上传 ${maxNum} 个文件`)
}
const handleFileChange = (file, fileList) => {
const fileType = getFileType(file.name)
if (suffixList.indexOf(fileType) < 0) {
ElMessage.info('文件格式不符合要求')
const currIdx = fileList.indexOf(file)
fileList.splice(currIdx, 1)
return
}
const isLt100M = file.size / 1024 / 1024 <= 100
if (!isLt100M) {
ElMessage.info('文件大小不能超过100M')
const currIdx = fileList.indexOf(file)
fileList.splice(currIdx, 1)
return
}
myEmit('handleFileShow', fileList, file)
}
const clearUploadFiles = () => {
uploadFileRef.value?.clearFiles()
}
const removeFileOrigin = (index: number) => {
fileList.value.splice(index, 1)
console.log('removeOrigin ', fileList.value)
}
defineExpose({ fileList, clearUploadFiles, removeFileOrigin })