【vue3+elementplus】文件上传

二次封装的el-upload

<template><div class="uploadFile"><el-uploadref="upload":action="props.action":accept="props.accept":on-progress="handleProgress":on-preview="handlePreview":on-success="handleSuccess":on-error="handleError":on-remove="handleRemove":on-exceed="handleExceed":before-upload="handleBeforeUpload":headers="props.headers":name="props.name":limit="props.limit":show-file-list="props.showfilelist":auto-upload="autoUpload"><el-button class="swagger" type="primary">{{ props.btnText }}</el-button></el-upload><el-progress :percentage="uploadPercentage" v-if="uploadPercentage !== 0"></el-progress></div>
</template><script lang="ts">
import { defineComponent, ref } from "vue";
import {UploadProps,UploadInstance,UploadRawFile,UploadRequestOptions,
} from "element-plus";
import { genFileId } from "element-plus";export default defineComponent({name: "UploadFile",props: {action: {type: String,default: "",},name: {type: String,default: "multipartFile",},btnText: {type: String,default: "文件上传",},showfilelist: {type: Boolean,default: true,},limit: {type: Number,default: 1,},headers: {type: Object,default() {return {};},},autoUpload: {type: Boolean,default: true,},accept: {type: String,default: "",},},emits: ["handleSuccess","handleError","handleProgress","handleRemove","handlePreview","handleBeforeUpload","handleHttpRequest",],setup(props: any, { emit }) {let uploadPercentage = ref(0);const upload = ref<UploadInstance>();const handleSuccess: UploadProps["onSuccess"] = (response,uploadFile,uploadFiles) => {if (uploadPercentage.value === 100) {emit("handleSuccess", response, uploadFile, uploadFiles);}};const handleError: UploadProps["onError"] = (errors,uploadFile,uploadFiles) => {emit("handleError", errors, uploadFile, uploadFiles);};const handleRemove: UploadProps["onRemove"] = (uploadFile, uploadFiles) => {uploadPercentage.value = 0;emit("handleRemove", uploadFile, uploadFiles);};const handleExceed: UploadProps["onExceed"] = (files, uploadFiles) => {if (props.limit === 1) {upload.value!.clearFiles();const file = files[0] as UploadRawFile;file.uid = genFileId();upload.value!.handleStart(file);upload.value!.submit();}};const handleProgress: UploadProps["onProgress"] = (evt,uploadFile,uploadFiles) => {if (evt.lengthComputable) {const percent = Math.round((evt.loaded / evt.total) * 100);// 更新进度条uploadPercentage.value = percent;emit("handleProgress", evt, uploadFile, uploadFiles);}};const handlePreview: UploadProps["onPreview"] = (uploadFile) => {emit("handlePreview", uploadFile);};const handleBeforeUpload: UploadProps["beforeUpload"] = (rawFile) => {const fileType = rawFile.type;if (fileType === props.accept) {return true;} else {emit("handleBeforeUpload", rawFile);return false;}};const handleHttpRequest = (options: UploadRequestOptions) => {emit("handleHttpRequest", options);};return {props,upload,uploadPercentage,handleProgress,handlePreview,handleSuccess,handleError,handleRemove,handleExceed,handleBeforeUpload,handleHttpRequest,};},
});
</script>

使用:

<template><upload-fileref="uploadfile"action="/api-admin-service/admin/api/basic/uploadFile"name="multipartFile"btnText="swagger导入定义"accept="application/json"@handleSuccess="handleSuccess"@handleError="handleError"@handleProgress="handleProgress"@handlePreview="handlePreview"@handleBeforeUpload="handleBeforeUpload"/>
</template><script lang="ts">
import { defineComponent, ref } from "vue";
import UploadFile from "@/components/UploadFile.vue";
import { isEmpty } from "@/utils";
import { ElMessage } from "element-plus";export default defineComponent({components: {UploadFile,},emits: ["handleSwagger"],setup(props: any, { emit }) {let uploadPercentage = ref(0);let uploadfile = ref();const handleSuccess = (res: any, file: any, fileList: any) => {if (res.status === 200) {// file.name是当前上传的文件名,可以通过赋值的方式改变文件名file.name = "待导入清单:" + file.name;... // 上传成功要做的操作} else {ElMessage.error(res.message || "导入失败");// 导入失败要清空文件列表uploadfile.value.upload.clearFiles();return false;}};const handleError = (err: any, file: any, fileList: any) => {ElMessage.error(err);};const handlePreview = (file: any) => {if (file?.response?.status === 200) {...}};// 文件导入之前const handleBeforeUpload = (file: any) => {ElMessage.error("只支持上传json格式的文件");};return {uploadfile,uploadPercentage,handleProgress,handlePreview,handleSuccess,handleError,handleBeforeUpload,};},
});
</script>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/55186.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

代码随想录算法训练营第四十六天|139.单词拆分、多重背包、背包问题总结

139.单词拆分 ★ 文档讲解 &#xff1a; 代码随想录 - 139.单词拆分 状态&#xff1a;再次回顾。&#xff08;★&#xff1a;需要多次回顾并重点回顾&#xff09; 本题其实不套完全背包思路来理解反而更简单易懂一点。 动态规划五部曲&#xff1a; 确定dp数组&#xff08;dp ta…

相机成像之3A算法的综述

3A算法是摄像机成像控制技术中的三大自动控制算法。随着计算机视觉的迅速发展,该算法在摄像器材领域具有广泛的应用和前景。 那么3A控制算法又是指什么呢? (1)AE (Auto Exposure)自动曝光控制 (2)AF (Auto Focus)自动聚焦控制 (3)AWB (Auto White Balance)自动白平衡控…

Android面试题:MVC、MVP、MVVM

MVC模式&#xff1a; MVC结构&#xff1a; 1.MVC(Model-View-Controller) 2.Model:对数据库的操作、对网络等的操作都应该在Model里面处理&#xff0c;当然对业务计算&#xff0c;变更等操作也是必须放在的该层的。 3.View:主要包括一下View及ViewGroup控件&#xff0c;可以是…

RHCE——八、DNS域名解析服务器

RHCE 一、概述1、产生原因2、作用3、连接方式4、因特网的域名结构4.1 拓扑4.2 分类4.3 域名服务器类型划分 二、DNS域名解析过程1、分类2、解析图&#xff1a;2.1 图&#xff1a;2.2 过程分析 三、搭建DNS域名解析服务器1、概述2、安装软件3、/bind服务中三个关键文件4、配置文…

Arduino驱动TEMT6000传感器(光照传感器篇)

目录 1、传感器特性 2、硬件原理图 3、驱动程序 TEMT6000是一个三极管类型的光敏传感器,其光照强度和基极的电流成正比。用起来也相当简单,可以简单的连接该传感器的基极到模拟电压输入,通过简单的检测电压值就可以判断当前的光照强度。 1、

Vue.js知识点学习的一点笔记

一、虚拟DOM 1、原生JS是命令式编程&#xff0c;当渲染在页面的数据发生一点点变化&#xff0c;需要整个重新渲染一编。vue.js渐进式框架有个虚拟DOM的概念&#xff0c;运用diff算法&#xff0c;比较新旧数据&#xff0c;相同的数据不变不重渲染&#xff0c;不同的部分新数据…

使用Navicat连接数据库报错-解决方式

报错&#xff1a; 1045-Access denied for user rootlocalhost(using passwordYES) 1. win r 打开&#xff1a; powerShell 2. 启动&#xff1a; net start mysql 3. 重置&#xff1a; mysql -u root -p 4.修改密码&#xff1a; mysql8.0前的版本修改密码的命令&…

linux 自动登录SSH

自动登录SSH 每次ssh连接服务器还要输入密码&#xff0c;可以进行配置自动登录SSH 步骤 在SSH的client端产生一组公钥和私钥 # 算法可以使用RSA和DSA两种ssh-keygen -f 秘钥文件名 -t 使用的算法 会生成私钥文件id_rsa以及公钥文件id_rsa.pub 把公钥上传至SSH Server端的.ssh目…

Haproxy搭建Web群集

目录 Web集群调度器 Haproxy应用分析 HAProxy的主要特性有 HAProxy负载均衡策略 LVS、Nginx、HAproxy的区别 Haproxy搭建 Web 群集 部署Nginx服务器 192.168.142.30 部署Nginx服务器 192.168.142.50 部署Haproxy服务器192.168.142.20 日志定义 Web集群调度器 目前常见…

若依微服务版部署到IDEA

1.进入若依官网&#xff0c;找到我们要下的微服务版框架 2.点击进入gitee,获取源码&#xff0c;下载到本地 3.下载到本地后&#xff0c;用Idea打开&#xff0c;点击若依官网&#xff0c;找到在线文档&#xff0c;找到微服务版本的&#xff0c;当然你不看文档&#xff0c;直接按…

VR/AR/眼镜投屏充电方案(LDR6020)

VR眼镜即VR头显&#xff0c;也称虚拟现实头戴式显示设备&#xff0c;随着元宇宙概念的传播&#xff0c;VR眼镜的热度一直只增不减&#xff0c;但是头戴设备的续航一直被人诟病&#xff0c;如果增大电池就会让头显变得笨重影响体验&#xff0c;所以目前最佳的解决方案还是使用VR…

nuget程序包无法连接

如果 visual studio 2013 打开 nuget程序包 如果一直处于下面的画面&#xff0c;那么就是无法连接到服务器了&#xff0c;但并不是服务器挂了&#xff0c;而是 vs2013 已经没有维护了&#xff0c;还用的比较老的Http协议&#xff0c;虽然现在 visual studio 已经更新到了2022版…

使用yapi生成漂亮接口文档

YApi-教程 1. 进入yapi 的菜单 2. 从微服务中导出swagger的json 从浏览器页面访问http://localhost:端口/服务/swagger-ui.html&#xff0c;然后打开浏览器的控制台&#xff0c;查看network&#xff0c;刷新下页面&#xff0c;找到XHR中的api-docs&#xff0c;然后查看res…

Python 阿里云盾滑块验证

&#xfeff;<table><tr><td bgcolororange>本文仅供学习交流使用&#xff0c;如侵立删&#xff01;</td></tr></table> 记一次阿里云盾滑块验证分析并通过 操作环境 win10 、 macPython3.9selenium、pyautogui 分析 最近在做中国庭审…

深度学习算法模型转成算能科技平台xx.bmodel模型的方法步骤

目录 1 docker镜像下载 2 SDK下载 3 下载sophon-demo 4 修改docker镜像的脚本 5 创建个文件夹 6.source 7.转模型 1 docker镜像下载 可以在dockerhub看到镜像的相关信息 https://hub.docker.com/r/sophgo/tpuc_dev/tags 用下面的命令下载 docker pull sophgo/tpuc_d…

db-gpt安装指南(docker版本)

1 下载源码 下载v0.3.5的源码&#xff0c;截止今天&#xff08;20230823&#xff09;建议安装这个“稳定”版本。 2 构建镜像 依照自己硬件环境&#xff0c;看看是否要调整一下启动参数。 bash docker/build_all_images.sh \ --base-image nvidia/cuda:11.7.1-devel-ubuntu…

前端面试:【浏览器与渲染引擎】工作原理与渲染流程

嗨&#xff0c;亲爱的读者&#xff01;你是否曾经好奇过当你在浏览器中输入URL并按下回车时&#xff0c;网页是如何显示在你的屏幕上的&#xff1f;这背后涉及了复杂的浏览器工作原理和渲染流程。本文将带你深入了解浏览器如何工作以及网页如何被渲染出来。 1. 浏览器的工作原理…

若依vue打印的简单方法

像我们后端程序员做前端的话,有时候真不需要知道什么原理,直接塞就好了 我们选用基于hiprint 的vue-plugin-hiprint来打印 目的是为了实现点击某些行的数据,然后点击某个按钮直接弹出下面的打印 此链接 大佬是原创,我拿来总结梳理一下 插件进阶功能请移步: 链接 插件模板制作页…

设计模式--代理模式

笔记来源&#xff1a;尚硅谷Java设计模式&#xff08;图解框架源码剖析&#xff09; 代理模式 1、代理模式的基本介绍 1&#xff09;代理模式&#xff1a;为一个对象提供一个替身&#xff0c;以控制对这个对象的访问。即通过代理对象访问目标对象2&#xff09;这样做的好处是…

mysql 、sql server 游标 cursor

游标 声明的位置 游标必须在声明处理程序之前被声明&#xff0c;并且变量和条件还必须在声明游标或处理程序之前被声明 游标的使用步骤 声明游标打开游标使用游标关闭游标 &#xff08;sql server 关闭游标和释放游标&#xff09; sql server 游标 declare my_cursor curs…