|
@@ -167,10 +167,10 @@ export default defineComponent({
|
|
|
<div
|
|
|
class={[
|
|
|
styles.userImgSection,
|
|
|
- (userInfo.value.userVip.vipType !== 'NOT_VIP') &&
|
|
|
+ userInfo.value.userVip.vipType.indexOf('VIP') !== -1 && styles.userVip,
|
|
|
+ (userInfo.value.userVip.vipType.indexOf('SVIP') !== -1 || userInfo.value.userVip.vipType.indexOf('PERMANENT_SVIP') !== -1) &&
|
|
|
styles.userSVip,
|
|
|
- userInfo.value.userVip.vipType === 'VIP' && styles.userVip,
|
|
|
- (userInfo.value.userVip.vipType !== 'NOT_VIP')
|
|
|
+ (userInfo.value.userVip.vipType.indexOf('NOT_VIP') === -1)
|
|
|
? styles.isVip
|
|
|
: ''
|
|
|
]}
|