Browse Source

Merge branch 'iteration-20240624' into online

lex 7 months ago
parent
commit
c28c16a732
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/user-info/my-fans/index.tsx

+ 2 - 2
src/views/user-info/my-fans/index.tsx

@@ -105,9 +105,9 @@ export default defineComponent({
                         src={item.avatar}
                         class="w-12 h-12 rounded-full border-2 border-[#2DC7AA]"
                       />
-                      {item.vipType && (
+                      {item.vipType && item.vipType !== 'NORMAL' && (
                         <ElImage
-                          src={item.vipType === 'SVIP' ? iconSvip : iconVip}
+                          src={item.vipType === 'VIP' ? iconVip : iconSvip}
                           class="h-5 -mt-4"
                         />
                       )}