123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <div class="user-info-head" @click="open()">
- <img v-if="sourceValue" :src="sourceValue" alt="avatar" class="img-circle img-lg" />
- <el-button v-if="showBtn" :class="`${prefixCls}-upload-btn`" @click="open()">
- {{ btnText ? btnText : t('cropper.selectImage') }}
- </el-button>
- <CopperModal
- ref="cropperModelRef"
- :srcValue="sourceValue"
- @upload-success="handleUploadSuccess"
- />
- </div>
- </template>
- <script lang="ts" name="CropperAvatar" setup>
- import { useDesign } from '@/hooks/web/useDesign'
- import { propTypes } from '@/utils/propTypes'
- import { useI18n } from 'vue-i18n'
- import CopperModal from './CopperModal.vue'
- const props = defineProps({
- width: propTypes.string.def('200px'),
- value: propTypes.string.def(''),
- showBtn: propTypes.bool.def(true),
- btnText: propTypes.string.def('')
- })
- const emit = defineEmits(['update:value', 'change'])
- const sourceValue = ref(props.value)
- const { getPrefixCls } = useDesign()
- const prefixCls = getPrefixCls('cropper-avatar')
- const message = useMessage()
- const { t } = useI18n()
- const cropperModelRef = ref()
- watchEffect(() => {
- sourceValue.value = props.value
- })
- watch(
- () => sourceValue.value,
- (v: string) => {
- emit('update:value', v)
- }
- )
- function handleUploadSuccess({ source, data, filename }) {
- sourceValue.value = source
- emit('change', { source, data, filename })
- message.success(t('cropper.uploadSuccess'))
- }
- function open() {
- cropperModelRef.value.openModal()
- }
- function close() {
- cropperModelRef.value.closeModal()
- }
- defineExpose({
- open,
- close
- })
- </script>
- <style lang="scss" scoped>
- $prefix-cls: #{$namespace}--cropper-avatar;
- .#{$prefix-cls} {
- display: inline-block;
- text-align: center;
- &-image-wrapper {
- overflow: hidden;
- cursor: pointer;
- border: 1px solid;
- border-radius: 50%;
- img {
- width: 100%;
- }
- }
- &-image-mask {
- opacity: 0%;
- position: absolute;
- width: inherit;
- height: inherit;
- border-radius: inherit;
- border: inherit;
- background: rgb(0 0 0 / 40%);
- cursor: pointer;
- transition: opacity 0.4s;
- ::v-deep(svg) {
- margin: auto;
- }
- }
- &-image-mask:hover {
- opacity: 4000%;
- }
- &-upload-btn {
- margin: 10px auto;
- }
- }
- .user-info-head {
- position: relative;
- display: inline-block;
- }
- .img-circle {
- border-radius: 50%;
- }
- .img-lg {
- width: 120px;
- height: 120px;
- }
- .user-info-head:hover:after {
- content: '+';
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- color: #eee;
- background: rgba(0, 0, 0, 0.5);
- font-size: 24px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- cursor: pointer;
- line-height: 110px;
- border-radius: 50%;
- }
- </style>
|