<template> <!-- 公共图片文件上传 --> <div class="publicImgFileUpload"> <el-upload v-model:file-list="fileList" action="#" :auto-upload="false" :on-preview="handlePictureCardPreview" :on-remove="handleRemove" :on-change="handleChange" :limit="limit" :list-type="listType" :accept="accept.join()" :class="{ hide: fileList.length >= limit }" > <el-button type="primary" icon="Plus" v-if="listType == 'text'">点击上传文件</el-button> <el-button type="primary" icon="Plus" v-if="listType == 'picture'">点击上传图片</el-button> <el-icon class="avatar-uploader-icon" v-if="listType == 'picture-card'"><plus /></el-icon> <template #tip> <div class="el-upload__tip">格式为:{{ fileType.join('/') }},大小不超过{{ fileSize }}MB,最多上传{{ limit }}张</div> </template> </el-upload> <!-- 预览大图 --> <el-dialog v-model="dialogVisible"> <div class="flex flex-justcontent-center flex-align-center"> <img w-full :src="dialogImageUrl" alt="Preview Image" style="margin: 20px auto" /> </div> </el-dialog> </div> </template> <script setup name="ImageFileUpload"> import { sysUpload, sysUploadDel } from '@/api/login.js'; const props = defineProps({ // 图片数组值 saveFileArr: { type: Array, default: () => [], }, // 文件列表的类型 'text' | 'picture' | 'picture-card' listType: { type: String, default: 'picture', }, // 图片数量限制 limit: { type: Number, default: 3, }, // 大小限制(MB) fileSize: { type: Number, default: 5, }, // 文件类型, 例如['png', 'jpg', 'jpeg'] fileType: { type: Array, default: () => ['jpg', 'png', 'jpeg', 'svg', 'gif'], }, }); const { proxy } = getCurrentInstance(); const emit = defineEmits(); const fileList = ref([]); const uploadList = ref([]); const dialogImageUrl = ref(''); const dialogVisible = ref(false); // 图片上传 const handleChange = file => { // console.log('图片上传--', file); if (props.fileSize) { const isLt = file.size / 1024 / 1024 < props.fileSize; if (!isLt) { proxy.$modal.msgError(`上传头像图片大小不能超过 ${props.fileSize} MB!`); fileList.value.pop(); //删除失败的 return false; } } proxy.$modal.loading('正在上传图片,请稍候...'); let formData = new FormData(); formData.append('file', file.raw); sysUpload(formData).then(res => { if (res.code == 200) { uploadList.value.push(res.data); props.saveFileArr.push(res.data); // 文件状态改为上传成功 fileList.value.map(item => (item.status = 'success')); } else { fileList.value.pop(); //删除失败的 proxy.$modal.msgError('上传失败'); } proxy.$modal.closeLoading(); }); }; // 图片删除 const handleRemove = file => { // console.log('图片删除--', file); let fileIndex = null; uploadList.value.map((item, index) => { if (file.name == item.originalName || file.originalName == item.originalName) { fileIndex = index; } }); // id为空时做逻辑删除,不调用删除接口 let id = uploadList.value[fileIndex].id; if (!!!id) { uploadList.value.splice(fileIndex, 1); props.saveFileArr.splice(fileIndex, 1); } else { let ids = []; ids.push(id); sysUploadDel(ids).then(res => { uploadList.value.splice(fileIndex, 1); props.saveFileArr.splice(fileIndex, 1); }); } }; // 图片方法预览 const handlePictureCardPreview = file => { let arr = ['jpg', 'png', 'jpeg', 'svg', 'gif']; for (let i = 0; i < arr.length; i++) { if (file.name.includes(arr[i])) { dialogImageUrl.value = file.url; dialogVisible.value = true; } } }; // 上传的文件类型 const accept = computed(() => { if (props.fileType.length) { let data = []; data = props.fileType.map(val => { return `.${val}`; }); return data; } else { return []; } }); function editPic() { // console.log('修改时图片回显--', props.saveFileArr); // 修改时图片回显 fileList.value = []; uploadList.value = []; props.saveFileArr.map(item => { let params = { id: item.id, name: item.name, originalName: item.originalName, status: 'success', url: item.url, }; fileList.value.push(params); uploadList.value.push(params); }); } watch( () => props.saveFileArr, () => { setTimeout(() => { editPic(); }); } ); onMounted(() => {}); onBeforeMount(() => { fileList.value = []; uploadList.value = []; }); </script> <style lang="scss"> .publicImgFileUpload { width: 100%; .hide .el-upload { display: none; } .el-upload-list--picture-card .el-upload-list__item-actions span + span { margin-left: 10px; } .el-upload-list--picture { display: flex; flex-wrap: wrap; .el-upload-list__item { width: 48%; margin-right: 5px; .el-upload-list__item-file-name { width: 65%; } } } .el-upload-list--text { .el-upload-list__item { border-top: 1px dashed #c6c6c6; padding: 10px; margin-top: 10px; } } } </style>