|
@@ -53,12 +53,13 @@ const VipCard = (props: { userVip: UserVipInfo }) => {
|
|
|
<ProgressBar
|
|
|
percent={percentage(userVip?.vip_exp, userVip?.vip_score_exp)}
|
|
|
style={{
|
|
|
- "--fill-color": "#fb8b05",
|
|
|
+ "--fill-color": "#bd37e0",
|
|
|
+ "--track-color": "#65609b",
|
|
|
"--track-width": "0.0694rem",
|
|
|
}}
|
|
|
/>
|
|
|
</div>
|
|
|
- <div className={"process-bottom"}>
|
|
|
+ <div className={"process-bottom text-[#e581ff]"}>
|
|
|
<span>VIP{userVip?.vip_level}</span>
|
|
|
<span className={"process-bottom-desc"}>
|
|
|
{t("expTips", {
|
|
@@ -334,11 +335,16 @@ export const ProfileHeader = (props: Props) => {
|
|
|
</div>
|
|
|
<div>
|
|
|
<span>{t("Conta")}</span>
|
|
|
- <span className="phone">{userInfo?.user_phone || ""}</span>
|
|
|
+ <span className="phone text-[#d3d1ff]">
|
|
|
+ {userInfo?.user_phone || ""}
|
|
|
+ </span>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <Link className="goto iconfont icon-xiangzuo1" href={`/changePassword`}></Link>
|
|
|
+ <Link
|
|
|
+ className="goto iconfont icon-xiangzuo1 text-[#8883eb]"
|
|
|
+ href={`/changePassword`}
|
|
|
+ ></Link>
|
|
|
</div>
|
|
|
{/*vipcard*/}
|
|
|
<VipCard userVip={userVip} />
|