1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| <template>
| <a-modal :visible="visible" title="修改头像" :maskClosable="false" :confirmLoading="confirmLoading" :width="800" @cancel="cancelHandel">
| <a-row>
| <a-col :xs="24" :md="12" :style="{height: '350px'}">
| <vue-cropper
| ref="cropper"
| :img="options.img"
| :info="true"
| :autoCrop="options.autoCrop"
| :autoCropWidth="options.autoCropWidth"
| :autoCropHeight="options.autoCropHeight"
| :fixedBox="options.fixedBox"
| @realTime="realTime"
| >
| </vue-cropper>
| </a-col>
| <a-col :xs="24" :md="12" :style="{height: '350px'}">
| <div class="avatar-upload-preview">
| <img :src="previews.url" :style="previews.img"/>
| </div>
| </a-col>
| </a-row>
|
| <template slot="footer">
| <a-button key="back" @click="cancelHandel">取消</a-button>
| <a-button key="submit" type="primary" :loading="confirmLoading" @click="okHandel">保存</a-button>
| </template>
| </a-modal>
| </template>
| <script>
| import { VueCropper } from 'vue-cropper'
|
| export default {
| components: {
| VueCropper
| },
| data() {
| return {
| visible: false,
| id: null,
| confirmLoading: false,
|
| options: {
| img: '/avatar2.jpg',
| autoCrop: true,
| autoCropWidth: 200,
| autoCropHeight: 200,
| fixedBox: true
| },
| previews: {},
| };
| },
| methods: {
| edit(id) {
| this.visible = true;
| this.id = id;
| /* 获取原始头像 */
|
| },
| close() {
| this.id = null;
| this.visible = false;
| },
| cancelHandel() {
| this.close();
| },
| okHandel() {
| const vm = this
|
| vm.confirmLoading = true
| setTimeout(() => {
| vm.confirmLoading = false
| vm.close()
| vm.$message.success('上传头像成功');
| }, 2000)
|
| },
|
| realTime(data) {
| this.previews = data
| }
| }
| };
| </script>
|
| <style lang="less" scoped>
|
| .avatar-upload-preview {
| position: absolute;
| top: 50%;
| transform: translate(50%, -50%);
| width: 180px;
| height: 180px;
| border-radius: 50%;
| box-shadow: 0 0 4px #ccc;
| overflow: hidden;
|
| img {
| width: 100%;
| height: 100%;
| }
| }
| </style>
|
|