安装
npm install vue-cropper
yarn add vue-cropper
注册
组件内使用
import { VueCropper } from 'vue-cropper'
components: {
VueCropper,
},
main.js里面使用
import VueCropper from 'vue-cropper'
Vue.use(VueCropper)
cdn方式使用
<script src="vuecropper.js"></script>
Vue.use(window['vue-cropper'])
nuxt 使用方式
if(process.browser) {
vueCropper = require('vue-cropper')
Vue.use(vueCropper.default)
}
使用
<template>
<div>
<el-upload v-if="multiple" action='string' list-type="picture-card" accept="image/*" :on-preview="handlePreview" :auto-upload="false" :on-remove="handleRemove" :http-request="upload" :on-change="consoleFL" :file-list="uploadList">
<i class="el-icon-plus">i>
el-upload>
<el-upload v-else class="avatar-uploader" action="'string'" :auto-upload="false" :show-file-list="false" :on-change="handleCrop" :http-request="upload">
<img v-if="imageUrl" :src="imageUrl" class="avatar" ref="singleImg" @mouseenter="mouseEnter" @mouseleave="mouseLeave" :style="{width:width+'px',height:height+'px'}">
<i v-else class="el-icon-plus avatar-uploader-icon" :style="{width:width+'px',height:height+'px','line-height':height+'px','font-size':height/6+'px'}">i>
<div id="uploadIcon" v-if="imageUrl" ref="reupload" @mouseenter="mouseEnter" @mouseleave="mouseLeave" :style="{width:'100%'}">
<i class="el-icon-zoom-in" @click.stop="handlePreviewSingle" :style="{color:'#2E2E2E',fontSize:'25px',display:'inline-block',paddingRight:'15px'}">i>
<i class="el-icon-upload" :style="{color:'#2E2E2E',fontSize:'25px',display:'inline-block'}">i>
div>
<div class="reupload" ref="uploading" :style="{width:reuploadWidth+'px',height:reuploadWidth+'px','line-height':reuploadWidth+'px','font-size':reuploadWidth/5+'px'}">上传中..div>
<div class="reupload" ref="failUpload" :style="{width:reuploadWidth+'px',height:reuploadWidth+'px','line-height':reuploadWidth+'px','font-size':reuploadWidth/5+'px'}">上传失败div>
el-upload>
<el-dialog :visible.sync="dialogVisible">
<img width="100%" :src="dialogImageUrl" alt="">
el-dialog>
<el-dialog :visible.sync="cropperModel" width="1100px" :before-close="beforeClose">
<Cropper :img-file="file" ref="vueCropper" :fixedNumber="fixedNumber" @upload="upload">
Cropper>
el-dialog>
div>
template>
<script>
import Cropper from './cropper';
export default {
name: 'uploader',
props: {
targetUrl: {
type: String,
default: `${process.env.API_ROOT}/sys/oss/upload`
},
multiple: {
type: Boolean,
default: false
},
initUrl: {
default: ''
},
fixedNumber: {
default: function () {
return [1.5, 1];
}
},
width: {
type: Number,
default: 178
},
height: {
type: Number,
default: 178
}
},
data () {
return {
file: '',
imageUrl: '',
dialogImageUrl: '',
uploadList: [],
reupload: true,
dialogVisible: false,
cropperModel: false,
reuploadWidth: this.height * 0.7,
};
},
updated () {
if (this.$refs.vueCropper) {
this.$refs.vueCropper.Update();
}
},
watch: {
initUrl: function (val) {
if (val) {
if (typeof this.initUrl === 'string') {
this.imageUrl = val;
} else {
this.uploadList = this.formatImgArr(val);
}
}
}
},
mounted () {
if (typeof this.initUrl === 'string') {
this.imageUrl = this.initUrl;
} else {
this.uploadList = this.formatImgArr(this.initUrl);
}
},
methods: {
handlePreview (file) {
this.dialogImageUrl = file.url;
this.dialogVisible = true;
},
handleRemove (file, fileList) {
this.uploadList = fileList;
this.$emit('imgupload', this.uploadList);
},
consoleFL (file, fileList) {
this.cropperModel = true;
this.file = file;
},
handlePreviewSingle (file) {
this.dialogImageUrl = this.file.url;
this.dialogVisible = true;
},
mouseEnter () {
this.$refs.reupload.style.display = 'block';
if (this.$refs.failUpload.style.display === 'block') {
this.$refs.failUpload.style.display = 'none';
}
this.$refs.singleImg.style.opacity = '0.6';
},
mouseLeave () {
this.$refs.reupload.style.display = 'none';
this.$refs.singleImg.style.opacity = '1';
},
handleCrop (file, files) {
this.cropperModel = true;
this.file = file;
},
async upload (data) {
if (!this.multiple) {
this.$refs.uploading.style.display = 'block';
}
let img = new Image();
img.src = data;
img.onload = async () => {
let blob = this.dataURItoBlob(data);
let formData = new FormData();
formData.append('file', blob, this.file.name);
this.imgUpload(formData);
};
},
async imgUpload(formData) {
const res = await this.$http({
url: 'sys/oss/upload',
method: 'post',
data: formData,
headers: {
'Content-Type': 'multipart/form-data'
}
});
if (!this.multiple) {
this.$refs.uploading.style.display = 'none';
}
if (res.data.code === 0) {
const currentPic = res.data.url;
if (this.multiple) {
this.uploadList.push({
url: currentPic,
uid: '111'
});
this.$emit('imgupload', this.uploadList);
} else {
this.$emit('imgupload', currentPic);
}
this.$refs.vueCropper.isDisabled = false;
} else {
if (!this.multiple) {
this.$refs.failUpload.style.display = 'block';
} else {
this.uploadList.pop();
}
this.$refs.vueCropper.isDisabled = false;
}
this.cropperModel = false;
},
formatImgArr (arr) {
const result = arr.map((item, index) => {
if (typeof item === 'string') {
return {
url: item,
uid: `index${index}`
};
} else {
return item.url;
}
});
return result;
},
beforeClose () {
console.log(this.uploadList);
this.cropperModel = false;
},
compress(img) {
let canvas = document.createElement('canvas');
let ctx = canvas.getContext('2d');
let width = img.width;
let height = img.height;
canvas.width = width;
canvas.height = height;
ctx.fillStyle = '#fff';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.drawImage(img, 0, 0, width, height);
let ndata = canvas.toDataURL('image/jpeg', 0.8);
return ndata;
},
dataURItoBlob(base64Data) {
let byteString;
if (base64Data.split(',')[0].indexOf('base64') >= 0) { byteString = atob(base64Data.split(',')[1]); } else { byteString = unescape(base64Data.split(',')[1]); }
let mimeString = base64Data.split(',')[0].split(':')[1].split(';')[0];
let ia = new Uint8Array(byteString.length);
for (let i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}
return new Blob([ia], { type: mimeString });
}
},
components: {
Cropper
}
};
script>
<style>
.avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.avatar-uploader .el-upload:hover {
border-color: #409eff;
}
.avatar-uploader-icon {
color: #8c939d;
text-align: center;
}
.avatar {
display: block;
}
.reupload {
border-radius: 50%;
position: absolute;
color: #fff;
background-color: #000000;
opacity: 0.6;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
}
#uploadIcon{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
}
style>