From 46890f08c85c020ba50cfbda4d5a2ab8619e36bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=AF=BA?= <1253070437@qq.com> Date: Sun, 12 Mar 2023 00:59:38 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91=E4=B8=AA?= =?UTF-8?q?=E4=BA=BA=E4=B8=AD=E5=BF=83=E6=B8=85=E7=90=86=E6=8E=89=E5=A4=B4?= =?UTF-8?q?=E5=83=8F=E5=90=8E=E9=98=B4=E5=BD=B1=E6=95=88=E6=9E=9C=E9=94=99?= =?UTF-8?q?=E4=B9=B1=E9=97=AE=E9=A2=98=E4=BB=A5=E5=8F=8A=E7=AD=BE=E5=90=8D?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E5=B7=A6=E5=8F=B3=E4=B8=8D=E9=A5=B1=E6=BB=A1?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/sys/user/userCenter.vue | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/snowy-admin-web/src/views/sys/user/userCenter.vue b/snowy-admin-web/src/views/sys/user/userCenter.vue index 663250bc..96f2c977 100644 --- a/snowy-admin-web/src/views/sys/user/userCenter.vue +++ b/snowy-admin-web/src/views/sys/user/userCenter.vue @@ -8,7 +8,7 @@ -
+
{{ userInfo.name }}
@@ -19,13 +19,13 @@

{{ userInfo.orgName }}

- {{ userInfo.homeAddress }} + {{ userInfo.homeAddress? userInfo.homeAddress : '暂无地址' }}

-
- +
+
打开签名板 @@ -173,9 +173,26 @@ justify-content: center; align-items: center; } + .mask-notImg { + border-radius: 50%; + position: absolute; + margin-top: -24px; + width: 104px; + height: 104px; + background: rgba(101, 101, 101, 0.6); + color: #ffffff; + opacity: 0; + font-size: 25px; + display: flex; + justify-content: center; + align-items: center; + } .avatar a:hover .mask { opacity: 1; } + .avatar a:hover .mask-notImg { + opacity: 1; + } .username { font-size: 20px; line-height: 28px;