mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
50 lines
1.5 KiB
Vue
50 lines
1.5 KiB
Vue
<template>
|
||
<div class="components-container">
|
||
<code>这里核心代码用的是<a class='link-type' href='//github.com/dai-siki/vue-image-crop-upload'>vue-image-crop-upload</a>
|
||
由于我在使用时它只有vue@1版本,而且有些业务的需求耦合到七牛等等原因吧,自己改造了一下,如果大家要使用的话,优先还是使用官方component
|
||
</code>
|
||
|
||
<pan-thumb :image='image'></pan-thumb>
|
||
|
||
<el-button type="primary" icon="upload" style="position: absolute;bottom: 15px;margin-left: 40px;" @click="imagecropperShow=true">修改头像
|
||
</el-button>
|
||
|
||
<image-cropper :width="300" :height="300" url="https://httpbin.org/post" @close='close' @crop-upload-success="cropSuccess" :key="imagecropperKey" v-show="imagecropperShow"></image-cropper>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import ImageCropper from 'components/ImageCropper';
|
||
import PanThumb from 'components/PanThumb';
|
||
|
||
export default {
|
||
components: { ImageCropper, PanThumb },
|
||
data() {
|
||
return {
|
||
imagecropperShow: false,
|
||
imagecropperKey: 0,
|
||
image: 'https://wpimg.wallstcn.com/577965b9-bb9e-4e02-9f0c-095b41417191'
|
||
}
|
||
},
|
||
methods: {
|
||
cropSuccess(resData) {
|
||
this.imagecropperShow = false;
|
||
this.imagecropperKey = this.imagecropperKey + 1;
|
||
this.image = resData.files.avatar;
|
||
},
|
||
close() {
|
||
this.imagecropperShow = false;
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped>
|
||
.avatar{
|
||
width: 200px;
|
||
height: 200px;
|
||
border-radius: 50%;
|
||
}
|
||
</style>
|
||
|