审查视图

public/themes/admin_simpleboot3/user/admin_oauth/userdetail.html 6.0 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
<include file="public@header"/>
<style type="text/css">
    .pic-list li {
        margin-bottom: 5px;
    }
</style>
</head>
<body>
<div class="wrap js-check-wrap">
    <ul class="nav nav-tabs">
        <!--<li><a href="{:url('Bank/index')}">银行列表</a></li>-->
        <!--<li class="active"><a href="{:url('Bank/add')}">添加银行</a></li>-->
    </ul>
        <form action="{:url('AdminOauth/changeUser')}" method="post" class="form-horizontal js-ajax-form margin-top-20" enctype="multipart/form-data" >
        <div class="row">
            <div class="col-md-9">
                <table class="table table-bordered">
                    <input class="form-control" type="hidden" name="id"
                           value="{$list['id']}"/>
                    <tr>
                        <th width="15%">真实姓名</th>
                        <td><input class="form-control" type="text" name="name" readonly="readonly"
                                   value="{$list['name']}" />

                        </td>
                    </tr>
                    <tr>
                        <th width="15%">手机号</th>
                        <td><input class="form-control" type="text" name="tel"  value="{$list['tel']}" />

                        </td>
                    </tr>
                    <tr>
                        <th width="15%">余额</th>
                        <td><input class="form-control" type="text" name="money"  value="{$list['money']}" />

                        </td>
                    </tr>
                    <tr>
                        <th width="15%">当前提现金额</th>
                        <td><input class="form-control" type="text" name="get_money"  value="{$list['get_money']}" />

                        </td>
                    </tr>
                    <tr>
                        <th width="15%">推荐人手机号</th>
                        <td><input class="form-control" type="text" name="referee_tel"  value="{$list['referee_tel']}" />

                        </td>
                    </tr>
                    <tr>
                        <th width="15%">推荐人id</th>
                        <td><input class="form-control" type="text" name="referee_id"  value="{$list['referee_id']}" />

                        </td>
                    </tr>
                    <tr>
魏强 authored
58
                        <th width="15%">PC短网址</th>
郭鑫 authored
59 60 61 62
                        <td><input class="form-control" type="text" name="link"  value="{$list['link']}" />
                        </td>
                    </tr>
                    <tr>
魏强 authored
63 64 65 66 67
                        <th width="15%">手机短网址</th>
                        <td><input class="form-control" type="text" name="phone_link"  value="{$list['phone_link']}" />
                        </td>
                    </tr>
                    <tr>
郭鑫 authored
68 69 70 71 72 73 74 75 76 77 78
                        <th width="15%">最后登录ip</th>
                        <td><input class="form-control" type="text" name="last_login_ip"  value="{$list['last_login_ip']}" />
                        </td>
                    </tr>
                    <tr>
                        <th width="15%">注册时ip</th>
                        <td><input class="form-control" type="text" name="create_ip"  value="{$list['create_ip']}" />
                        </td>
                    </tr>
                    <tr>
                        <th width="15%">首次登录时间</th>
郭鑫 authored
79
                        <td><input class="form-control" type="text" name="login_time"  value="{$list['login_time']|date='Y-m-d H:i:s',###}"  readonly/>
郭鑫 authored
80 81 82 83
                        </td>
                    </tr>
                    <tr>
                        <th width="15%">最后登录时间</th>
郭鑫 authored
84
                        <td><input class="form-control" type="text" name="last_login_time"  value="{$list['last_login_time']|date='Y-m-d H:i:s',###}" readonly/>
郭鑫 authored
85 86 87 88
                        </td>
                    </tr>
                    <tr>
                        <th width="18%">注册时间</th>
郭鑫 authored
89
                        <td><input class="form-control" type="text" name="create_time"  value="{$list['create_time']|date='Y-m-d H:i:s',###}"  readonly/>
郭鑫 authored
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
                        </td>
                    </tr>
                    <tr>
                        <th>状态</th>
                        <td>
                            <select name="status">
                                <option name="status" value="1" <eq name="list.status" value="1">selected</eq>>&nbsp;&nbsp;正常&nbsp;&nbsp;</option>
                                <option name="status" value="8" <eq name="list.status" value="8">selected</eq>>&nbsp;&nbsp;拉黑&nbsp;&nbsp;</option>
                            </select>
                            <!--<input class="form-control" type="text" name="status"  value="{$list['status']}" />-->

                        </td>
                    </tr>
                </table>
                <div class="form-group">
                    <div class="col-sm-offset-2 col-sm-10">
                        <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
                        <a class="btn btn-default" href="{:url('AdminOauth/user')}">{:lang('BACK')}</a>
                    </div>
                </div>
            </div>
        </div>
    </form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript">
    //编辑器路径定义
    var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript">
    $(function () {

        editorcontent = new baidu.editor.ui.Editor();
        editorcontent.render('content');
        try {
            editorcontent.sync();
        } catch (err) {
        }

        $('.btn-cancel-thumbnail').click(function () {
            $('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
            $('#thumbnail').val('');
        });

    });

</script>
</body>
</html>