审查视图

public/themes/admin_simpleboot3/user/admin_oauth/money.html 6.3 KB
郭鑫 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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
<include file="public@header"/>
<link rel="stylesheet" href="__STATIC__/install/css/mdialog.css">
<style>
    .popup{
        width: 250px;
        height: 100px;
        background-color: rgba(0,0,0,0.5);
        position: fixed;
        top: 50%;
        transform: translateY(-50px);
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 5px;
        color: #ffffff;
    }
    .popup p{
        text-align: center;
        margin-top: 20px;
    }
    .popup span{
        text-align: center;
        line-height: 30px;
        cursor: pointer;
    }
    .popup .queding{
        display: inline-block;
        width: 80px;
        height: 30px;
        background-color: #1E9FFF;
        border-radius: 3px;
    }
    .popup span:hover{
        opacity: 0.8;
    }
    .popup .quxiao{
        display: inline-block;
        width: 80px;
        height: 30px;
        ckground-color: #9cb945 ;
        color: #333333;
        border-radius: 3px;
        background-color:#fff;
        margin-left: 35px;
    }
    .btn_list{
        margin: 0 auto;
        width: 200px;
    }
</style>
</head>
<body>
<div class="wrap">
    <ul class="nav nav-tabs">
        <li class=""><a href="{:url('AdminOauth/inmoney',array('id'=>$uid))}">收入</a></li>
        <li class="active"><a>支出</a></li>
    </ul>
    <form class="well form-inline margin-top-20" method="post" action="{:url('AdminOauth/money')}">
        <input type="hidden" name="id" value="{$uid}">
        时间:
        <input type="text" class="form-control js-bootstrap-datetime" name="start_time"
               value="{$start_time|default=''}"
               style="width: 140px;" autocomplete="off"> -
        <input type="text" class="form-control js-bootstrap-datetime" name="end_time"
               value="{$end_time|default=''}"
               style="width: 140px;" autocomplete="off"> &nbsp; &nbsp;
        支出详情:
        <input type="text" class="form-control" name="title" style="width: 200px;"
               value="{$title|default=''}" placeholder="请输入支出详情">
        支出金额:
        <input type="text" class="form-control" name="money" style="width: 200px;"
               value="{$money|default=''}" placeholder="请输入支出金额">
        <input type="submit" class="btn btn-primary" value="搜索"/>
        <a class="btn btn-danger" href="{:url('AdminOauth/money',array('id'=>$uid))}">清空</a>
    </form>
    <div class="well form-inline margin-top-20">
        <div >用户信息</div>
        <div>
            <span>用户id:{$user.id}</span>&nbsp;&nbsp;&nbsp;&nbsp;
            <span>用户名:{$user.name}</span>&nbsp;&nbsp;&nbsp;&nbsp;
郭鑫 authored
81 82
            <span>手机号:{$user.tel}</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <span class="btn btn-default" onclick="window.history.back(-1)" >返回</span>
郭鑫 authored
83
        </div>
郭鑫 authored
84
郭鑫 authored
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
    </div>

    <form method="post" class="js-ajax-form margin-top-20">
        <table class="table table-hover table-bordered">
            <thead>
            <tr>
                <th>ID</th>
                <th>支出详情</th>
                <th>支出金额</th>
                <th>状态</th>
                <th>支出时间</th>
                <!--<th align="center" style="cursor: pointer; text-align: center;">查看</th>-->
                <th align="center" style="cursor: pointer;">操作</th>
            </tr>
            </thead>
            <tbody>
            <foreach name="lists" item="vo">
                <tr>
                    <td>{$vo.id}</td>
                    <td>{$vo.title}</td>
                    <td>{$vo.money}</td>
                    <td>
                        <eq name="vo.status" value="1">
                            正常
                        </eq>
                    </td>
                    <td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
                    <td>
郭鑫 authored
113 114 115 116
                        <neq name="vo.order_id" value="0">
                        <span  class="order" style="color: #18BC9C; text-decoration:underline; cursor: pointer; "  index="{$vo.order_id}">查看订单</span>
                        </neq>
                            <span  class="del" style="color: #18BC9C; text-decoration:underline; cursor: pointer; "  index="{$vo.id}">删除</span>
郭鑫 authored
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
                    </td>
                </tr>
            </foreach>
            </tbody>
        </table>

    </form>
    <div class="popup" style="display: none;">
        <p>确认删除该信息</p>
        <div class="btn_list">
            <span class="queding">确认</span>
            <span class="quxiao">取消</span>
        </div>
    </div>

</div>
<script src="__STATIC__/js/admin.js"></script>
<script src="__STATIC__/js/layer/layer.js"></script>
<script type="text/javascript" src="__STATIC__/js/zepto.min.js"></script>
<script type="text/javascript" src="__STATIC__/js/mdialog.js"></script>
<script type="">
郭鑫 authored
138
    $('.del').click(function () {
郭鑫 authored
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
        var id = $(this).attr('index');
        $('.popup').css('display','block');
        // 删除
        $('.queding').click(function () {
            $.ajax({
                type:"POST",
                url:"{:url('AdminOauth/moneyDel')}",
                data:{
                    "id":id,
                },
                success:function (data) {
                    new TipBox({type:'success',str:'操作成功',hasBtn:true});
                    $('.popup').css('display','none');
                },
                error:function () {
                    new TipBox({type:'error',str:'对不起,出错了!',hasBtn:true});
                    $('.popup').css('display','none');
                }
            })
        })
    })
    $('.quxiao').click(function () {
        $('.popup').css('display','none');
    })

//    查看用户详细信息
    $('.detail').click(function () {
        var url1 = "{:url('user/AdminOauth/userDetail')}";
        var url2 = $(this).attr('index');
        var url3 = url1.split('.');
        var url  = url3[0]+'/id/'+url2+'.html';
        window.location.href = url
    })
郭鑫 authored
172 173 174 175 176 177 178 179
//    查看订单
    $('.order').click(function () {
        var url1 = "{:url('user/AdminOauth/findOrder')}";
        var url2 = $(this).attr('index');
        var url3 = url1.split('.');
        var url  = url3[0]+'/order_id/'+url2+'.html';
        window.location.href = url
    })
郭鑫 authored
180 181 182 183 184
//    查看提现申请
//    查看邀请人
</script>
</body>
</html>