|
|
|
@ -10,10 +10,11 @@ |
|
|
|
<view v-if="userInfo.username"> |
|
|
|
<view class="username"> |
|
|
|
{{userInfo.username}} |
|
|
|
<uni-icons class="vip-icon" custom-prefix="iconfont" type="icon-VIP" size="18" :color="isVip === true ? primaryColor : noVipColor "/> |
|
|
|
<view v-if="isVip === false">画意人</view> |
|
|
|
<view v-if="isVip === true">高级画意师</view> |
|
|
|
<uni-icons class="vip-icon" custom-prefix="iconfont" type="icon-VIP" size="18" :color="isVip === true ? vipColor : noVipColor "/> |
|
|
|
<view v-if="isVip === false">画意人</view> |
|
|
|
<view class="titleLogo" v-if="isVip === true">高级画意师</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="gold-info">画意值:{{goldNum}}</view> |
|
|
|
</view> |
|
|
|
<view class="login-btn uni-primary" v-else @click="$noMultipleClicks(getUserInfoLogin)">点击登录</view> |
|
|
|
@ -106,6 +107,7 @@ import UniIcons from "../../uni_modules/uni-icons/components/uni-icons/uni-icons |
|
|
|
goldNum: 0, |
|
|
|
primaryColor: "#1a94bc", |
|
|
|
noVipColor: "#6a6a6a", |
|
|
|
vipColor: "#FFA500", |
|
|
|
menus: [ |
|
|
|
{ |
|
|
|
title: "常见问题", |
|
|
|
@ -415,6 +417,9 @@ import UniIcons from "../../uni_modules/uni-icons/components/uni-icons/uni-icons |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
.titleLogo{ |
|
|
|
color: orange; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|