:before-upload="handleBeforeUpload"
handleBeforeUpload(file) {
// console.log(file);
this.loading = this.$loading({
lock: true,
text: "上传中",
background: "rgba(0, 0, 0, 0.7)"
});
const isLt2M = file.size / 1024 / 1024 < 3 //这里做文件大小限制
if(!isLt2M) {
this.$message({
message: '上传文件大小不能超过 3MB!',
type: 'error'
});
this.loading.close()
}
return isLt2M
},