297 lines
6.4 KiB
Vue
297 lines
6.4 KiB
Vue
<!-- 文件上传组件 -->
|
||
<template>
|
||
<div>
|
||
<el-upload
|
||
v-model:file-list="fileList"
|
||
:auto-upload="true"
|
||
:style="props.style"
|
||
:before-upload="handleBeforeUpload"
|
||
:http-request="handleUpload"
|
||
:on-progress="handleProgress"
|
||
:on-success="handleSuccess"
|
||
:on-error="handleError"
|
||
:accept="props.accept"
|
||
:limit="props.limit"
|
||
multiple
|
||
>
|
||
<!-- 上传文件按钮 -->
|
||
<el-button type="primary" :disabled="fileList.length >= props.limit">
|
||
{{ props.uploadBtnText }}
|
||
</el-button>
|
||
|
||
<!-- 文件列表 -->
|
||
<template #file="{ file }">
|
||
<div class="el-upload-list__item-info">
|
||
<a class="el-upload-list__item-name" @click="handleDownload(file)">
|
||
<el-icon><Document /></el-icon>
|
||
<span class="el-upload-list__item-file-name">{{ file.name }}</span>
|
||
<span class="el-icon--close" @click="handleRemove(file.url!)">
|
||
<el-icon><Close /></el-icon>
|
||
</span>
|
||
</a>
|
||
</div>
|
||
</template>
|
||
</el-upload>
|
||
|
||
<el-progress
|
||
:style="{
|
||
display: showProgress ? 'inline-flex' : 'none',
|
||
width: '100%',
|
||
}"
|
||
:percentage="progressPercent"
|
||
/>
|
||
</div>
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import {
|
||
UploadRawFile,
|
||
UploadUserFile,
|
||
UploadProgressEvent,
|
||
UploadRequestOptions,
|
||
} from "element-plus";
|
||
import VersionApi from "@/api/system/version";
|
||
import OSS from "@/utils/oss-upload.js";
|
||
let ossClient: any = null;
|
||
async function getCredentials() {
|
||
const res = await VersionApi.getCredentials();
|
||
ossClient = new OSS({ ...res, stsToken: res.securityToken });
|
||
console.log(ossClient);
|
||
}
|
||
onMounted(() => {
|
||
getCredentials();
|
||
});
|
||
import CommonApi, { FileInfo, uploadResponse } from "@/api/account/common";
|
||
|
||
const props = defineProps({
|
||
version: {
|
||
type: [Boolean, Number],
|
||
default: "",
|
||
},
|
||
/**
|
||
* 请求携带的额外参数
|
||
*/
|
||
data: {
|
||
type: Object,
|
||
default: () => {
|
||
return {};
|
||
},
|
||
},
|
||
/**
|
||
* 上传文件的参数名
|
||
*/
|
||
name: {
|
||
type: String,
|
||
default: "file",
|
||
},
|
||
/**
|
||
* 文件上传数量限制
|
||
*/
|
||
limit: {
|
||
type: Number,
|
||
default: 1,
|
||
},
|
||
/**
|
||
* 单个文件上传大小限制(单位MB)
|
||
*/
|
||
maxFileSize: {
|
||
type: Number,
|
||
default: 300,
|
||
},
|
||
/**
|
||
* 上传文件类型
|
||
*/
|
||
accept: {
|
||
type: String,
|
||
default: "*",
|
||
},
|
||
/**
|
||
* 上传按钮文本
|
||
*/
|
||
uploadBtnText: {
|
||
type: String,
|
||
default: "上传文件",
|
||
},
|
||
|
||
/**
|
||
* 样式
|
||
*/
|
||
style: {
|
||
type: Object,
|
||
default: () => {
|
||
return {
|
||
width: "300px",
|
||
};
|
||
},
|
||
},
|
||
});
|
||
|
||
const modelValue = defineModel("modelValue", {
|
||
type: [Array] as PropType<string[]>,
|
||
required: true,
|
||
default: () => [],
|
||
});
|
||
|
||
const fileList = ref([] as UploadUserFile[]);
|
||
|
||
const showProgress = ref(false);
|
||
const progressPercent = ref(0);
|
||
|
||
// 监听 modelValue 转换用于显示的 fileList
|
||
watch(
|
||
modelValue,
|
||
(value) => {
|
||
fileList.value = value.map((url) => {
|
||
const name = url.substring(url.lastIndexOf("/") + 1);
|
||
return {
|
||
name: name,
|
||
url: url,
|
||
} as UploadUserFile;
|
||
});
|
||
},
|
||
{
|
||
immediate: true,
|
||
}
|
||
);
|
||
|
||
/**
|
||
* 上传前校验
|
||
*/
|
||
function handleBeforeUpload(file: UploadRawFile) {
|
||
// 限制文件大小
|
||
if (file.size > props.maxFileSize * 1024 * 1024) {
|
||
ElMessage.warning("上传图片不能大于" + props.maxFileSize + "M");
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
|
||
/*
|
||
* 上传文件
|
||
*/
|
||
function handleUpload(options: UploadRequestOptions) {
|
||
return new Promise((resolve, reject) => {
|
||
const file = options.file;
|
||
|
||
const formData = new FormData();
|
||
formData.append(props.name, file);
|
||
|
||
// 处理附加参数
|
||
Object.keys(props.data).forEach((key) => {
|
||
formData.append(key, props.data[key]);
|
||
});
|
||
const name = file.name;
|
||
showProgress.value = true;
|
||
ossClient
|
||
.partUpload(`/version/${props.version}${name.replace(".apk", "")}`, file, (p: number) => {
|
||
console.log("进度", p);
|
||
handleProgress({
|
||
percent: Math.floor(p * 100),
|
||
lengthComputable: true,
|
||
loaded: p * file.size,
|
||
total: file.size,
|
||
target: null,
|
||
timeStamp: Date.now(),
|
||
type: "",
|
||
eventPhase: 0,
|
||
bubbles: false,
|
||
cancelable: false,
|
||
defaultPrevented: false,
|
||
isTrusted: true,
|
||
returnValue: true,
|
||
srcElement: null,
|
||
currentTarget: null,
|
||
composed: false,
|
||
cancelBubble: false,
|
||
NONE: 0,
|
||
CAPTURING_PHASE: 1,
|
||
AT_TARGET: 2,
|
||
BUBBLING_PHASE: 3,
|
||
composedPath: () => [],
|
||
initEvent: () => {},
|
||
preventDefault: () => {},
|
||
stopImmediatePropagation: () => {},
|
||
stopPropagation: () => {},
|
||
});
|
||
// 这里可以根据进度做相应的处理,例如更新UI等
|
||
})
|
||
.then((data: any) => {
|
||
console.log(data);
|
||
resolve(data);
|
||
})
|
||
.catch((error: any) => {
|
||
reject(error);
|
||
});
|
||
// CommonApi.upload(formData)
|
||
// .then((data) => {
|
||
// resolve(data);
|
||
// })
|
||
// .catch((error) => {
|
||
// reject(error);
|
||
// });
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 上传进度
|
||
*
|
||
* @param event
|
||
*/
|
||
const handleProgress = (event: UploadProgressEvent) => {
|
||
progressPercent.value = event.percent;
|
||
if (progressPercent.value >= 100) {
|
||
showProgress.value = false;
|
||
}
|
||
};
|
||
|
||
/**
|
||
* 上传成功
|
||
*/
|
||
const handleSuccess = (fileInfo: string) => {
|
||
ElMessage.success("上传成功");
|
||
modelValue.value = [...modelValue.value, fileInfo];
|
||
};
|
||
|
||
const handleError = (error: any) => {
|
||
ElMessage.error("上传失败");
|
||
};
|
||
|
||
/**
|
||
* 删除文件
|
||
*/
|
||
function handleRemove(fileUrl: string) {
|
||
// CommonApi.delete(fileUrl).then(() => {
|
||
modelValue.value = modelValue.value.filter((url) => url !== fileUrl);
|
||
// });
|
||
}
|
||
|
||
/**
|
||
* 下载文件
|
||
*/
|
||
function handleDownload(file: UploadUserFile) {
|
||
// const { url, name } = file;
|
||
// if (url) {
|
||
// CommonApi.download(url, name);
|
||
// }
|
||
}
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
.el-upload-list__item .el-icon--close {
|
||
position: absolute;
|
||
top: 50%;
|
||
right: 5px;
|
||
color: var(--el-text-color-regular);
|
||
cursor: pointer;
|
||
opacity: 0.75;
|
||
transition: opacity var(--el-transition-duration);
|
||
transform: translateY(-50%);
|
||
}
|
||
|
||
:deep(.el-upload-list) {
|
||
margin: 0;
|
||
}
|
||
|
||
:deep(.el-upload-list__item) {
|
||
margin: 0;
|
||
}
|
||
</style>
|