wujingjing
2024-04-22 f106e4dffb8279cb90726e83e7edd631f4c77699
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<template>
    <div>
        <el-dialog destroy-on-close title="更换头像" v-model="state.isShowDialog" width="769px">
            <div class="cropper-warp">
                <div class="cropper-warp-left">
                    <img :src="state.cropperImg" class="cropper-warp-left-img" />
                </div>
                <div class="cropper-warp-right">
                    <div class="cropper-warp-right-title">预览</div>
                    <div class="cropper-warp-right-item">
                        <div class="cropper-warp-right-value">
                            <img :src="state.cropperImgBase64" class="cropper-warp-right-value-img" />
                        </div>
                        <div class="cropper-warp-right-label">100 x 100</div>
                    </div>
                    <div class="cropper-warp-right-item">
                        <div class="cropper-warp-right-value">
                            <img :src="state.cropperImgBase64" class="cropper-warp-right-value-img cropper-size" />
                        </div>
                        <div class="cropper-warp-right-label">50 x 50</div>
                    </div>
                </div>
            </div>
            <template #footer>
                <span class="dialog-footer">
                    <el-button @click="onCancel" size="default">取 消</el-button>
                    <el-button type="primary" @click="onSubmit" size="default">更 换</el-button>
                </span>
            </template>
        </el-dialog>
    </div>
</template>
 
<script setup lang="ts" name="cropper">
import { reactive, nextTick } from 'vue';
import Cropper from 'cropperjs';
import 'cropperjs/dist/cropper.css';
 
// 定义变量内容
const state = reactive({
    isShowDialog: false,
    cropperImg: '',
    cropperImgBase64: '',
    cropper: '' as RefType,
});
 
// 打开弹窗
const openDialog = (imgs: string) => {
    state.cropperImg = imgs;
    state.isShowDialog = true;
    nextTick(() => {
        initCropper();
    });
};
// 关闭弹窗
const closeDialog = () => {
    state.isShowDialog = false;
};
// 取消
const onCancel = () => {
    closeDialog();
};
// 更换
const onSubmit = () => {
    // state.cropperImgBase64 = state.cropper.getCroppedCanvas().toDataURL('image/jpeg');
};
// 初始化cropperjs图片裁剪
const initCropper = () => {
    const letImg = <HTMLImageElement>document.querySelector('.cropper-warp-left-img');
    state.cropper = new Cropper(letImg, {
        viewMode: 1,
        dragMode: 'none',
        initialAspectRatio: 1,
        aspectRatio: 1,
        preview: '.before',
        background: false,
        autoCropArea: 0.6,
        zoomOnWheel: false,
        crop: () => {
            state.cropperImgBase64 = state.cropper.getCroppedCanvas().toDataURL('image/jpeg');
        },
    });
};
 
// 暴露变量
defineExpose({
    openDialog,
});
</script>
 
<style scoped lang="scss">
.cropper-warp {
    display: flex;
    .cropper-warp-left {
        position: relative;
        display: inline-block;
        height: 350px;
        flex: 1;
        border: 1px solid var(--el-border-color);
        background: var(--el-color-white);
        overflow: hidden;
        background-repeat: no-repeat;
        cursor: move;
        border-radius: var(--el-border-radius-base);
        .cropper-warp-left-img {
            width: 100%;
            height: 100%;
        }
    }
    .cropper-warp-right {
        width: 150px;
        height: 350px;
        .cropper-warp-right-title {
            text-align: center;
            height: 20px;
            line-height: 20px;
        }
        .cropper-warp-right-item {
            margin: 15px 0;
            .cropper-warp-right-value {
                display: flex;
                .cropper-warp-right-value-img {
                    width: 100px;
                    height: 100px;
                    border-radius: var(--el-border-radius-circle);
                    margin: auto;
                }
                .cropper-size {
                    width: 50px;
                    height: 50px;
                }
            }
            .cropper-warp-right-label {
                text-align: center;
                font-size: 12px;
                color: var(--el-text-color-primary);
                height: 30px;
                line-height: 30px;
            }
        }
    }
}
</style>