在vue3中根据element Plus封装一个图片上传组件

继上次文件上传之后,可能又遇到多个图片上传,图片如下

组件使用方法如下

话不多说,直接上组件,上面的划入删除是手写的,组件里面只有多图片上传的,索性就自己写了个划入显示点击删除的

下面是代码

javascript 复制代码
<template>
  <el-upload class="avatar-uploader" :show-remove="true" action="" :on-remove="handleRemove" :show-file-list="false"
    :http-request="handleSuccess">
    <div v-show="imageUrl" class="deleteBox"></div>
    <el-icon v-show="imageUrl" class="delete" @click.stop="handleDelete">
      <Delete />
    </el-icon>
    <img v-if="imageUrl" :src="downloadUrl + imageUrl" class="avatar" />
    <el-icon v-else class="avatar-uploader-icon">
      <Plus />
    </el-icon>
  </el-upload>
</template>

<script lang="ts" setup>
import { defineProps, defineEmits, ref, watch } from 'vue'
import type { UploadProps, UploadUserFile } from 'element-plus'
import { ElMessage } from 'element-plus'
import { uploadAction } from '@/utils/request'
const props = defineProps({
  modelValue: {
    type: String,
    default: ''
  }
});
const emit = defineEmits(['update:modelValue'])
const downloadUrl = ref('')//回显地址

const imageUrl = ref('')
// 子组件的方法
function clickSon(val: any) {
  emit('update:modelValue', val);
}
// 监听 modelValue 的变化
watch(() => props.modelValue, (newVal,) => {
  // 可以在这里做一些响应 modelValue 变化的逻辑  
  //监听父组件传值变化修改list
  if (newVal) {
    imageUrl.value = newVal
  } else {
    imageUrl.value = ''
  }
}, { immediate: true });

const handleSuccess = (uploadFile: any, uploadFiles: any) => {
  console.log(uploadFile, uploadFiles, '上传');
  if (uploadFile) {
    const file = uploadFile.file;
    const imageMimeTypes = ['image/jpeg', 'image/png', 'image/gif', 'image/bmp', 'image/webp']; // 常见的图片 MIME 类型  

    // 检查文件的 MIME 类型是否是图片类型  
    if (!imageMimeTypes.includes(file.type)) {
      ElMessage.error('请选择图片')
      return; // 如果不是图片,则直接返回,不执行上传操作  
    }
    let fd = new FormData();
    fd.append('files', uploadFile.file);
    console.log(fd, 'fd');
    //上传文件
    uploadAction('/api/gpsservice/v1/attachment/multiUpload', fd).then((res: any) => {
      if (res) {
        console.log(res[0], 'res');
        // fileList.value[0].name = res[0].name
        // fileList.value[0].url = downloadUrl.value + res[0].attachmentPath
        //上传成功后向父组件传值
        // imageUrl.value=res[0].attachmentPath
        clickSon(res[0].attachmentPath)

      }
    })
  }
}
const handleRemove: UploadProps['onRemove'] = (uploadFile, uploadFiles) => {
  console.log(uploadFile, uploadFiles)
}
const handleDelete=()=>{
  console.log('删除');
  clickSon('') 
}
</script>

<style lang="less" scoped>
.avatar-uploader .avatar {
  width: 178px;
  height: 178px;
  display: block;
}

.avatar {
  position: relative;
}

.delete {
  position: absolute;
  left: 48%;
  top: 48%;
  // z-index: 999;

}

.deleteBox {
  width: 178px;
  height: 178px;
  z-index: 998;
  position: absolute;
  left: 0;
  top: 0;
}

.avatar-uploader:hover {
  .delete {
    z-index: 999;
  }

  .deleteBox {
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #0000001f;

  }
}
</style>

<style>
.avatar-uploader .el-upload {
  border: 1px dashed var(--el-border-color);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--el-transition-duration-fast);
}

.avatar-uploader .el-upload:hover {
  border-color: var(--el-color-primary);
}

.el-icon.avatar-uploader-icon {
  font-size: 28px;
  color: #8c939d;
  width: 178px;
  height: 178px;
  text-align: center;
}
</style>
相关推荐
崔庆才丨静觅3 小时前
hCaptcha 验证码图像识别 API 对接教程
前端
passerby60614 小时前
完成前端时间处理的另一块版图
前端·github·web components
掘了4 小时前
「2025 年终总结」在所有失去的人中,我最怀念我自己
前端·后端·年终总结
崔庆才丨静觅4 小时前
实用免费的 Short URL 短链接 API 对接说明
前端
崔庆才丨静觅5 小时前
5分钟快速搭建 AI 平台并用它赚钱!
前端
崔庆才丨静觅5 小时前
比官方便宜一半以上!Midjourney API 申请及使用
前端
Moment5 小时前
富文本编辑器在 AI 时代为什么这么受欢迎
前端·javascript·后端
崔庆才丨静觅5 小时前
刷屏全网的“nano-banana”API接入指南!0.1元/张量产高清创意图,开发者必藏
前端
剪刀石头布啊6 小时前
jwt介绍
前端
爱敲代码的小鱼6 小时前
AJAX(异步交互的技术来实现从服务端中获取数据):
前端·javascript·ajax