审查视图

html/my/my_balance.html 5.8 KB
dl authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
    <script src="../../assets/js/fontsize.js"></script>
    <link rel="stylesheet" href="../../assets/css/api.css"/>
    <link rel="stylesheet" href="../../assets/css/style.css">
    <link rel="stylesheet" href="../../assets/css/index.css">
    <link rel="stylesheet" href="../../assets/css/doc.css">
    <link rel="stylesheet" href="../../assets/css/pay.css">
    <link rel="stylesheet" href="../../assets/css/my_news.css">
    <link rel="stylesheet" href="../../assets/icon/iconfont.css">
朱振飞 authored
17
    <title>我的账户</title>
dl authored
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
    <style>
        body {
            background-color: #f4f4f4;
        }

        .balance_top {
            padding: 0.2rem 0 0.2rem 0.5rem;
            background-color: #dbb25f;
        }

        .balance_title {
            font-size: 15px;
            color: #fff;
        }

        .balance_num {
            font-size: 36px;
            color: #fff;
        }

        .cash {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 15px;
            color: #424242;
            padding: 0.27rem 0.5rem;
            background-color: #fff;
            margin-bottom: 0.09rem;
            border-bottom: 1px solid #f2f2f2;
        }

        .cash .icon-tixian {
            color: #7CC6FF;
            font-size: 30px;
            margin-right: 0.1rem;
        }

        .cash .icon-xiangyou {
            color: #C0C0C0;
        }

        .count_box {
            background-color: #fff;
        }

        .count {
            margin: 0 0.55rem 0 0.37rem;
            border-bottom: 1px solid #F7f7f7;
            padding: 0.27rem 0;
        }

        .count_all_box {
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .count_all_item {
            display: flex;
            align-items: center;
            flex-direction: column;
            text-align: center;
            font-size: 12px;
            color: #424242;
        }

        .count_all_item span {
            padding: 0.05rem 0;
        }

        .count_all_item_active {
            color: #DDBB73;
        }

        .count_title_active {
            border-bottom: 1px solid #DDBB73;
        }

        .count90 {
            transform: rotate(90deg);
        }

        .cashes {
            display: flex;
            align-items: center;
        }
    </style>
</head>
<body>
<div id="loadStart"></div>
<div id="app">
    <div class="balance_top">
        <div class="balance_title">当前余额(元)</div>
        <div class="balance_num">{{user_type.balance}}</div>
    </div>
    <div class="cash" @click="my_count">
        <div class="cashes"><span class="iconfont icon-tixian"></span><span>提现</span></div>
        <div class="iconfont icon-xiangyou"></div>
    </div>
    <!--<div class="count_box">-->
    <!--<div class="cash count" @click="show=!show">-->
    <!--<span>账户明细</span>-->
    <!--<span :class="['iconfont','icon-xiangyou',show?'count90':'']"></span>-->
    <!--</div>-->
    <!--<div class="count_all_box" v-show="show">-->
    <!--<div class="count_all_item count_all_item_active">-->
    <!--<span class="count_title_active">全部</span>-->
    <!--<span>{{all_money}}</span>-->
    <!--</div>-->
    <!--<div class="count_all_item ">-->
    <!--<span class="">分红收益</span>-->
    <!--<span>1000.00</span>-->
    <!--</div>-->
    <!--<div class="count_all_item ">-->
    <!--<span class="">服务收入</span>-->
    <!--<span>10000.00</span>-->
    <!--</div>-->
    <!--<div class="count_all_item ">-->
    <!--<span class="">其它收入</span>-->
    <!--<span>10000.00</span>-->
    <!--</div>-->
    <!--</div>-->
    <!--</div>-->
</div>
</body>
</html>
<script type="text/javascript" src="../../assets/js/api.js"></script>
朱振飞 authored
146
<script type="text/javascript" src="../../assets/js/weui.min.js"></script>
dl authored
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
<script type="text/javascript" src="../../assets/js/public.js"></script>
<script type="text/javascript" src="../../assets/js/fastclick.js"></script>
<script>
    new FastClick(document.body);
</script>
<script type="text/javascript" src="../../assets/js/vue.min.js"></script>
<script type="text/javascript" src="../../assets/js/axios.min.js"></script>
<script type="text/javascript" src="../../assets/icon/iconfont.js"></script>
<script>
    var app = new Vue({
        el: '#app',
        data: {
            // show: false,
            all_money: toWan('99999999'),
            user_type: []
        },
        created: function () {
朱振飞 authored
164
            this.getUserIndexInfo();
dl authored
165 166 167
        },
        methods: {
            my_count: function () {
朱振飞 authored
168
                var app = this;
dl authored
169 170 171 172
                // alert(app.user_type.balance);
                if (parseFloat(app.user_type.balance) <= 0) {
                    toastMsg('余额不足')
                } else {
朱振飞 authored
173
                    openView('my_cash', '../my/my_cash', '提现确认', 'my_cash', false, {balance: app.user_type.balance})
dl authored
174 175 176
                }
            },
            getUserIndexInfo: function () {
朱振飞 authored
177
                var app = this;
dl authored
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
                var header = {
                    "XX-Device-Type": getDevice(),
                    'XX-Token': getToken()
                };
                getRequest('post', 'user/index/getUserIndexInfo', null, header).then(function (res) {
                    if (res.data.code == 1) {
                        app.user_type = res.data.data;
                    } else {
                    }
                    loadEnd();
                })
            }
        }
    })
</script>