小魚兒心語:真正點亮生命的不是明天的景色苦锨,而是美好的希望。我們懷著美好的希望趴泌,勇敢的走著舟舒,跌倒了再爬起,失敗了就再努力踱讨,永遠相信明天會更好魏蔗,永遠相信不管自己再平凡,都會擁有屬于自己的幸福痹筛,這才是平凡人生中最燦爛的風景莺治。
話不多說,直接上代碼:
components中新建ImageUpload.vue文件:
<template>
<div class="component-upload-image">
<el-upload
: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"
:class="{hide: this.fileList.length >= this.limit}"
>
<i class="el-icon-plus"></i>
</el-upload>
<!-- 上傳提示 -->
<div class="el-upload__tip" slot="tip" v-if="showTip">
請上傳
<template v-if="fileSize"> 大小不超過 <b style="color: #f56c6c">{{ fileSize }}MB</b> </template>
<template v-if="fileType"> 格式為 <b style="color: #f56c6c">{{ fileType.join("/") }}</b> </template>
的文件
</div>
<el-dialog
:visible.sync="dialogVisible"
title="預覽"
width="800"
append-to-body
>
<img
:src="dialogImageUrl"
style="display: block; max-width: 100%; margin: 0 auto"
/>
</el-dialog>
</div>
</template>
<script>
// 根據(jù)具體情況獲取項目中的token值
import { getToken } from "@/utils/auth";
export default {
props: {
value: [String, Object, Array],
valueimg: {
type: String,
default: '',
},
// 圖片數(shù)量限制
limit: {
type: Number,
default: 5,
},
// 大小限制(MB)
fileSize: {
type: Number,
default: 5,
},
// 文件類型, 例如['png', 'jpg', 'jpeg']
fileType: {
type: Array,
default: () => ["png", "jpg", "jpeg"],
},
// 是否顯示提示
isShowTip: {
type: Boolean,
default: true
}
},
data() {
return {
dialogImageUrl: "",
dialogVisible: false,
hideUpload: false,
baseUrl: process.env.VUE_APP_BASE_API,
uploadImgUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上傳的圖片服務器地址
headers: {
token: "Bearer " + getToken(),
},
fileList: []
};
},
watch: {
value: {
handler(val) {
if (val) {
this.fileList = []
this.fileList = [
{
url:this.baseUrl + val
}
]
// 首先將值轉為數(shù)組
// const list = Array.isArray(val) ? val : this.value.split(',');
// // 然后將數(shù)組轉為對象數(shù)組
// this.fileList = list.map(item => {
// if (typeof item === "string") {
// if (item.indexOf(this.baseUrl) === -1) {
// item = { name: this.baseUrl + item, url: this.baseUrl + item };
// } else {
// item = { name: item, url: item };
// }
// }
// return item;
// });
} else {
this.fileList = [];
return [];
}
},
deep: true,
immediate: true
},
valueimg(val){
if(val=='1'){
this.fileList = []
}
},
},
computed: {
// 是否顯示提示
showTip() {
return this.isShowTip && (this.fileType || this.fileSize);
},
},
methods: {
// 刪除圖片
handleRemove(file, fileList) {
const findex = this.fileList.map(f => f.name).indexOf(file.name);
this.fileList.splice(findex, 1);
this.$emit("input", this.listToString(this.fileList));
},
// 上傳成功回調
handleUploadSuccess(res) {
console.log(125,res)
this.fileList.push({ name: res.fileName, url: res.url });
this.$emit("input", this.listToString(this.fileList));
this.loading.close();
},
// 上傳前l(fā)oading加載
handleBeforeUpload(file) {
let isImg = false;
if (this.fileType.length) {
let fileExtension = "";
if (file.name.lastIndexOf(".") > -1) {
fileExtension = file.name.slice(file.name.lastIndexOf(".") + 1);
}
isImg = this.fileType.some(type => {
if (file.type.indexOf(type) > -1) return true;
if (fileExtension && fileExtension.indexOf(type) > -1) return true;
return false;
});
} else {
isImg = file.type.indexOf("image") > -1;
}
if (!isImg) {
this.$message.error(
`文件格式不正確, 請上傳${this.fileType.join("/")}圖片格式文件!`
);
return false;
}
if (this.fileSize) {
const isLt = file.size / 1024 / 1024 < this.fileSize;
if (!isLt) {
this.$message.error(`上傳頭像圖片大小不能超過 ${this.fileSize} MB!`);
return false;
}
}
this.loading = this.$loading({
lock: true,
text: "上傳中",
background: "rgba(0, 0, 0, 0.7)",
});
},
// 文件個數(shù)超出
handleExceed() {
this.$message.error(`上傳文件數(shù)量不能超過 ${this.limit} 個!`);
},
// 上傳失敗
handleUploadError() {
this.$message({
type: "error",
message: "上傳失敗",
});
this.loading.close();
},
// 預覽
handlePictureCardPreview(file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
// 對象轉成指定字符串分隔
listToString(list, separator) {
let strs = "";
separator = separator || ",";
for (let i in list) {
strs += list[i].url.replace(this.baseUrl, "") + separator;
}
return strs != '' ? strs.substr(0, strs.length - 1) : '';
}
}
};
</script>
<style scoped lang="scss">
// .el-upload--picture-card 控制加號部分
::v-deep.hide .el-upload--picture-card {
display: none;
}
// 去掉動畫效果
::v-deep .el-list-enter-active,
::v-deep .el-list-leave-active {
transition: all 0s;
}
::v-deep .el-list-enter, .el-list-leave-active {
opacity: 0;
transform: translateY(0);
}
</style>
main.js文件中全局引用
// 圖片上傳組件
import ImageUpload from "@/components/ImageUpload"
// 全局組件掛載
Vue.component('ImageUpload', ImageUpload)
在userfilings.vue文件中引入該組件
<template>
<div class="cardimg">
<ImageUpload @input="tapapplicationForm" :value="valueimg"></ImageUpload>
</div>
</template>
<script>
export default {
name: "Management",
data() {
return {
valueimg1:'',
}
},
methods:{
/** 修改按鈕操作帚稠,將圖片回顯展示 */
handleUpdate(row) {
/** 為了使組件中的value值有效監(jiān)聽谣旁,需要在點擊修改按鈕時先將valueimg 值清空 */
this.valueimg = ''
getManagement(id).then(response => {
this.form = response.data;
/** 將返回的圖片地址賦值給 valueimg */
this.valueimg = this.form.applicationForm
this.open = true;
this.title = "修改考核信息管理";
});
}
}
}
</script>