207 lines
5.6 KiB
Vue
Raw Normal View History

2025-06-05 09:42:18 +08:00
<template>
<div class="component-upload-image">
<el-upload
accept="image/png,image/jpeg,image/png"
2025-06-05 09:42:18 +08:00
multiple
:action="uploadImgUrl"
list-type="picture-card"
:on-success="handleUploadSuccess"
:before-upload="handleBeforeUpload"
:limit="limit"
:on-error="handleUploadError"
:on-exceed="handleExceed"
name="file"
:on-remove="handleRemove"
:show-file-list="true"
:headers="headers"
:file-list="fileList"
:on-preview="handlePictureCardPreview"
2025-06-16 15:48:17 +08:00
:class="{ hide: this.fileList.length >= this.limit }"
2025-06-05 09:42:18 +08:00
>
<i class="el-icon-plus"></i>
</el-upload>
2025-06-05 18:44:48 +08:00
2025-06-05 09:42:18 +08:00
<!-- 上传提示 -->
<div class="el-upload__tip" slot="tip" v-if="showTip">
请上传
2025-06-16 15:48:17 +08:00
<template v-if="fileSize">
大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b>
</template>
<template v-if="fileType">
格式为 <b style="color: #f56c6c">{{ fileType.join('/') }}</b>
</template>
2025-06-05 09:42:18 +08:00
的文件
</div>
2025-06-16 15:48:17 +08:00
<el-dialog v-model:visible="dialogVisible" title="预览" width="800" append-to-body>
<img :src="dialogImageUrl" style="display: block; max-width: 100%; margin: 0 auto" />
2025-06-05 09:42:18 +08:00
</el-dialog>
</div>
</template>
<script>
2025-06-16 15:48:17 +08:00
import { getToken } from '@/utils/auth';
2025-06-05 09:42:18 +08:00
export default {
props: {
value: [String, Object, Array],
// 图片数量限制
limit: {
type: Number,
2025-06-16 15:48:17 +08:00
default: 5
2025-06-05 09:42:18 +08:00
},
// 大小限制(MB)
fileSize: {
2025-06-16 15:48:17 +08:00
type: Number,
default: 5
2025-06-05 09:42:18 +08:00
},
// 文件类型, 例如['png', 'jpg', 'jpeg']
fileType: {
type: Array,
2025-06-16 15:48:17 +08:00
default: () => ['png', 'jpg', 'jpeg']
2025-06-05 09:42:18 +08:00
},
// 是否显示提示
isShowTip: {
type: Boolean,
default: true
}
},
data() {
return {
number: 0,
uploadList: [],
2025-06-16 15:48:17 +08:00
dialogImageUrl: '',
2025-06-05 09:42:18 +08:00
dialogVisible: false,
hideUpload: false,
2025-06-05 18:44:48 +08:00
baseUrl: import.meta.env.VITE_APP_BASE_API,
2025-06-16 15:48:17 +08:00
uploadImgUrl: import.meta.env.VITE_APP_BASE_API + '/resource/oss/upload', // 上传的图片服务器地址
2025-06-05 09:42:18 +08:00
headers: {
2025-06-16 15:48:17 +08:00
Authorization: 'Bearer ' + getToken()
2025-06-05 09:42:18 +08:00
},
fileList: []
};
},
watch: {
value: {
handler(val) {
if (val) {
// 首先将值转为数组
const list = Array.isArray(val) ? val : this.value.split(',');
// 然后将数组转为对象数组
2025-06-16 15:48:17 +08:00
this.fileList = list.map((item) => {
if (typeof item === 'string') {
2025-06-05 09:42:18 +08:00
item = { name: item, url: item };
}
return item;
});
} else {
this.fileList = [];
return [];
}
},
deep: true,
immediate: true
}
},
computed: {
// 是否显示提示
showTip() {
return this.isShowTip && (this.fileType || this.fileSize);
2025-06-16 15:48:17 +08:00
}
2025-06-05 09:42:18 +08:00
},
methods: {
// 删除图片
handleRemove(file, fileList) {
2025-06-16 15:48:17 +08:00
const findex = this.fileList.map((f) => f.name).indexOf(file.name);
if (findex > -1) {
2025-06-05 09:42:18 +08:00
this.fileList.splice(findex, 1);
2025-06-16 15:48:17 +08:00
this.$emit('input', this.listToString(this.fileList));
2025-06-05 09:42:18 +08:00
}
},
// 上传成功回调
handleUploadSuccess(res) {
2025-06-16 15:48:17 +08:00
const { fileName, url } = res.data || {};
this.uploadList.push({ name: fileName, url: url });
2025-06-05 09:42:18 +08:00
if (this.uploadList.length === this.number) {
this.fileList = this.fileList.concat(this.uploadList);
this.uploadList = [];
this.number = 0;
2025-06-16 15:48:17 +08:00
this.$emit('input', this.listToString(this.fileList));
2025-06-05 09:42:18 +08:00
this.$modal.closeLoading();
}
},
// 上传前loading加载
handleBeforeUpload(file) {
let isImg = false;
if (this.fileType.length) {
2025-06-16 15:48:17 +08:00
let fileExtension = '';
if (file.name.lastIndexOf('.') > -1) {
fileExtension = file.name.slice(file.name.lastIndexOf('.') + 1);
2025-06-05 09:42:18 +08:00
}
2025-06-16 15:48:17 +08:00
isImg = this.fileType.some((type) => {
2025-06-05 09:42:18 +08:00
if (file.type.indexOf(type) > -1) return true;
if (fileExtension && fileExtension.indexOf(type) > -1) return true;
return false;
});
} else {
2025-06-16 15:48:17 +08:00
isImg = file.type.indexOf('image') > -1;
2025-06-05 09:42:18 +08:00
}
if (!isImg) {
2025-06-16 15:48:17 +08:00
this.$modal.msgError(`文件格式不正确, 请上传${this.fileType.join('/')}图片格式文件!`);
2025-06-05 09:42:18 +08:00
return false;
}
if (this.fileSize) {
const isLt = file.size / 1024 / 1024 < this.fileSize;
if (!isLt) {
this.$modal.msgError(`上传头像图片大小不能超过 ${this.fileSize} MB!`);
return false;
}
}
2025-06-16 15:48:17 +08:00
this.$modal.loading('正在上传图片,请稍候...');
2025-06-05 09:42:18 +08:00
this.number++;
},
// 文件个数超出
handleExceed() {
this.$modal.msgError(`上传文件数量不能超过 ${this.limit} 个!`);
},
// 上传失败
handleUploadError() {
2025-06-16 15:48:17 +08:00
this.$modal.msgError('上传图片失败,请重试');
2025-06-05 09:42:18 +08:00
this.$modal.closeLoading();
},
// 预览
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
// 对象转成指定字符串分隔
listToString(list, separator) {
2025-06-16 15:48:17 +08:00
let strs = '';
separator = separator || ',';
for (const i in list) {
strs += list[i].url.replace(this.baseUrl, '') + separator;
2025-06-05 09:42:18 +08:00
}
return strs != '' ? strs.substr(0, strs.length - 1) : '';
}
}
};
</script>
<style scoped lang="scss">
// .el-upload--picture-card 控制加号部分
::v-deep.hide .el-upload--picture-card {
2025-06-16 15:48:17 +08:00
display: none;
2025-06-05 09:42:18 +08:00
}
// 去掉动画效果
::v-deep .el-list-enter-active,
::v-deep .el-list-leave-active {
2025-06-16 15:48:17 +08:00
transition: all 0s;
2025-06-05 09:42:18 +08:00
}
2025-06-16 15:48:17 +08:00
::v-deep .el-list-enter,
.el-list-leave-active {
opacity: 0;
transform: translateY(0);
2025-06-05 09:42:18 +08:00
}
</style>