my_wallet.html 2.4 KB
<!DOCTYPE html>
<html lang="en">

{include file="public/head"/}
<style>
    body,
    html {
        background-color: #f9f9f9;
    }

    .my_wallet {
        padding: 0.24rem 0.34rem 0;
    }

    .wallet_money {
        width: 6.84rem;
        height: 2.42rem;
        margin: 0 auto;
        border-radius: 0.16rem;
        background-color: #fff;
    }

    .wallet_tips {
        font-size: 0.28rem;
        color: #06121E;
    }

    .wallet_coupon {
        color: #FF5A4E;
        font-size: 0.4rem;
        margin: 0.14rem 0;
    }

    .wallet_num {
        font-size: 0.32rem;
        color: #06121E;
    }

    .wallet_single {
        width: 6.84rem;
        margin: 0.24rem auto 0;
        border-radius: 0.16rem;
        background-color: #fff;
    }

    .wallet_box {
        padding: 0.4rem;
    }
</style>

<body>
    <div class="my_wallet">
        <!-- 钱包余额 -->
        <div class="wallet_money layout align_center justify_center flex_diection">
            <div class="wallet_tips">我的钱包金额</div>
            <div class="wallet_coupon">{$user.exp}</div>
            <div class="wallet_num">约¥{$user.rmb}</div>
        </div>
        <div class="wallet_single" onclick="window.location.href='{:url('home/member/my_withdraw')}'">
            <div class="wallet_box layout align_center flex_row justify">
                <div class="wallet_tips">提现</div>
                <div>
                    <img src="__CDN__/assets/advertising/img/right.png" alt="">
                </div>
            </div>
        </div>
        <div class="wallet_single" onclick="window.location.href='{:url('home/member/earnings_log')}'">
            <div class="wallet_box layout align_center flex_row justify">
                <div class="wallet_tips">收益记录</div>
                <div>
                    <img src="__CDN__/assets/advertising/img/right.png" alt="">
                </div>
            </div>
        </div>
        <div class="wallet_single" onclick="window.location.href='{:url('home/member/withdraw_log')}'">
            <div class="wallet_box layout align_center flex_row justify">
                <div class="wallet_tips">提现记录</div>
                <div>
                    <img src="__CDN__/assets/advertising/img/right.png" alt="">
                </div>
            </div>
        </div>
    </div>
    {include file="public/js" /}
</body>

</html>