104 lines
3.4 KiB
Vue
104 lines
3.4 KiB
Vue
<template>
|
||
<div class="container">
|
||
<div class="content-title">支持拖拽</div>
|
||
<el-upload class="upload-demo" drag
|
||
action="http://127.0.0.1:41000/file/upload" multiple
|
||
:data="uploadData"
|
||
:headers="headers"
|
||
:on-success="handleSuccess"
|
||
:on-error="handleError"
|
||
:before-upload="beforeUpload"
|
||
:on-change="handle">
|
||
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
|
||
<div class="el-upload__text">
|
||
将文件拖到此处,或
|
||
<em>点击上传</em>
|
||
</div>
|
||
<div class="el-upload__tip">只能上传 doc, docx, pdf, txt, png, jpg, jpeg 格式且不超过 5MB 的文件</div>
|
||
</el-upload>
|
||
<!-- <template #tip>
|
||
<div class="el-upload__tip">只能上传 doc, docx, pdf, txt, png, jpg, jpeg 格式且不超过 2MB 的文件</div>
|
||
</template> -->
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
|
||
import { ElMessage } from 'element-plus';
|
||
const handle = (rawFile: any) => {
|
||
console.log(rawFile);
|
||
};
|
||
const allowedTypes = ['doc', 'docx', 'pdf', 'txt', 'png', 'jpg', 'jpeg','md', "epub", 'go', 'java', 'py', 'js', 'html', 'css', 'json', 'xml', 'yaml', 'yml'];
|
||
const userRole = localStorage.getItem('ms_role') || '';
|
||
interface UploadData {
|
||
upload_type: string;
|
||
auth_type: string;
|
||
md5: string;
|
||
type: string;
|
||
}
|
||
const uploadData: UploadData = {
|
||
upload_type: 'file',
|
||
auth_type: 'public',
|
||
md5: '',
|
||
type: 'file',
|
||
};
|
||
const headers = {
|
||
"token": localStorage.getItem('token') || '',
|
||
};
|
||
|
||
const handleSuccess = (response: any, file: any, fileList: any) => {
|
||
let res = response;
|
||
if (res.code !== 0){
|
||
ElMessage.error(res.error);
|
||
return;
|
||
}
|
||
console.log('上传成功', res);
|
||
ElMessage.success('上传成功');
|
||
};
|
||
|
||
const handleError = (error: any, file: any, fileList: any) => {
|
||
console.log('上传失败', error);
|
||
ElMessage.error('上传失败');
|
||
};
|
||
|
||
const beforeUpload = (file: any) => {
|
||
const fileExtension = file.name.split('.').pop().toLowerCase();
|
||
const isAllowedType = allowedTypes.includes(fileExtension);
|
||
if (!isAllowedType && userRole != "admin") {
|
||
ElMessage.error('不允许的文件类型,仅支持 doc, docx, pdf, txt, png, jpg, jpeg, md, epub 及代码文本格式');
|
||
return false;
|
||
}
|
||
if(!isAllowedType && userRole == "admin"){
|
||
//提示不允许的文件类型,是否继续上传,确认后继续上传
|
||
confirm('不允许的文件类型,是否继续上传?') ? isAllowedType : false;
|
||
}
|
||
// 可以在这里进行文件验证等操作
|
||
let isLt2M = file.size / 1024 / 1024 < 5;
|
||
if (!isLt2M && userRole != "admin") {
|
||
ElMessage.error('上传文件大小不能超过 5MB');
|
||
}
|
||
if(!isLt2M && userRole == "admin"){
|
||
//提示文件过大,是否继续上传,确认后继续上传
|
||
let res = confirm('文件过大,是否继续上传?') ;
|
||
isLt2M =res;
|
||
}
|
||
return isLt2M;
|
||
};
|
||
|
||
|
||
</script>
|
||
|
||
<style scoped>
|
||
.content-title {
|
||
font-weight: 400;
|
||
line-height: 50px;
|
||
margin: 10px 0;
|
||
font-size: 22px;
|
||
color: #1f2f3d;
|
||
}
|
||
|
||
.upload-demo {
|
||
width: 30%;
|
||
}
|
||
</style>
|