在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>
相关推荐
也无晴也无风雨30 分钟前
深入剖析输入URL按下回车,浏览器做了什么
前端·后端·计算机网络
Martin -Tang1 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational3 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐3 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架
曹天骄4 小时前
next中服务端组件共享接口数据
前端·javascript·react.js
阮少年、4 小时前
java后台生成模拟聊天截图并返回给前端
java·开发语言·前端
郝晨妤5 小时前
鸿蒙ArkTS和TS有什么区别?
前端·javascript·typescript·鸿蒙
AvatarGiser6 小时前
《ElementPlus 与 ElementUI 差异集合》Icon 图标 More 差异说明
前端·vue.js·elementui
喝旺仔la6 小时前
vue的样式知识点
前端·javascript·vue.js
别忘了微笑_cuicui6 小时前
elementUI中2个日期组件实现开始时间、结束时间(禁用日期面板、控制开始时间不能超过结束时间的时分秒)实现方案
前端·javascript·elementui