|
@@ -32,6 +32,7 @@ import { handleUpvoteClick, handleShareClick } from '../../../core/libs/actions'
|
|
|
import { usePermissions } from '../../../composables/permissions'
|
|
|
import ImageEvo from '@/components/image-evo.vue'
|
|
|
import more from '@designer-hub/assets/src/libs/assets/more'
|
|
|
+import qrCode from '@designer-hub/assets/src/libs/assets/qrCode'
|
|
|
|
|
|
const { features } = usePermissions()
|
|
|
const { alert, confirm } = useMessage()
|
|
@@ -196,10 +197,8 @@ defineExpose({
|
|
|
</div>
|
|
|
<div class="absolute bottom-0 left-0 right-0">
|
|
|
<div class="bg-gradient-to-t from-black to-transparent">
|
|
|
- <div class="flex min-h-27">
|
|
|
- <div
|
|
|
- class="w-18 h-18 border-white border border-solid mx-3.5 rounded-full overflow-hidden"
|
|
|
- >
|
|
|
+ <div class="flex min-h-27 px-3.5 gap-3.5">
|
|
|
+ <div class="w-18 h-18 border-white border border-solid rounded-full overflow-hidden">
|
|
|
<wd-img
|
|
|
width="100%"
|
|
|
height="100%"
|
|
@@ -207,18 +206,24 @@ defineExpose({
|
|
|
></wd-img>
|
|
|
</div>
|
|
|
<div class="pb-8 flex-1">
|
|
|
- <div class="text-white text-2xl font-normal font-['PingFang_SC'] leading-normal">
|
|
|
- {{ memberInfo.name }}
|
|
|
+ <div class="flex items-center justify-between">
|
|
|
+ <div class="text-white text-2xl font-normal font-['PingFang_SC'] leading-normal">
|
|
|
+ {{ memberInfo.name }}
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center">
|
|
|
+ <wd-img width="22" height="22" :src="qrCode"></wd-img>
|
|
|
+ <wd-icon name="chevron-right" color="white" size="16"></wd-icon>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="flex flex-wrap gap-4">
|
|
|
<template v-for="(it, i) in designerInfo?.personalIdentity?.split('、')" :key="i">
|
|
|
<div
|
|
|
- class="h-6 px-2 bg-black/10 rounded-[30px] border border-solid border-white/60 justify-center items-center gap-2.5 inline-flex"
|
|
|
+ class="h-6 px-2 bg-black/10 rounded-[30px] border border-solid border-white/60 justify-center items-center box-border inline-flex"
|
|
|
>
|
|
|
<div
|
|
|
- class="text-center text-white text-[10px] font-normal font-['PingFang_SC'] leading-normal"
|
|
|
+ class="text-center text-white text-[10px] font-normal font-['PingFang_SC']"
|
|
|
>
|
|
|
- <!-- 创设空间事务所创始人 -->
|
|
|
{{ it }}
|
|
|
</div>
|
|
|
</div>
|