Merge pull request 'vip页面如果已经是vip了就不展示支付按钮' (#15) from feat-20240118 into main

Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_web/pulls/15
This commit is contained in:
yezian 2024-01-23 22:02:16 +08:00
commit 130a1cda0f
1 changed files with 33 additions and 31 deletions

View File

@ -223,6 +223,7 @@ export default function Vip() {
</p> </p>
</div> </div>
</div> </div>
{!isVip && (
<div className="flex flex-col w-full fixed left-0 bottom-0 z-20"> <div className="flex flex-col w-full fixed left-0 bottom-0 z-20">
<div className="h-12 bg-gradient-to-t from-[#07050AE5] to-[#07050A00]"></div> <div className="h-12 bg-gradient-to-t from-[#07050AE5] to-[#07050A00]"></div>
<div className="flex flex-col pt-3 pb-11 px-4 bg-[#07050AE5]"> <div className="flex flex-col pt-3 pb-11 px-4 bg-[#07050AE5]">
@ -257,6 +258,7 @@ export default function Vip() {
</p> </p>
</div> </div>
</div> </div>
)}
</div> </div>
</section> </section>
); );