dcda48eb9fa8ddf0de30ccb2a6e4b3fc.php 6.9 KB
<?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:51:"themes/admin_simpleboot3/user\admin_oauth\edit.html";i:1530948114;s:68:"D:\wamp\www\candy\public\themes\admin_simpleboot3\public\header.html";i:1516676889;}*/ ?>
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <!-- Set render engine for 360 browser -->
    <meta name="renderer" content="webkit">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- HTML5 shim for IE8 support of HTML5 elements -->
    <!--[if lt IE 9]>
    <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
    <![endif]-->


    <link href="/candy/public/themes/admin_simpleboot3/public/assets/themes/<?php echo cmf_get_admin_style(); ?>/bootstrap.min.css" rel="stylesheet">
    <link href="/candy/public/themes/admin_simpleboot3/public/assets/simpleboot3/css/simplebootadmin.css" rel="stylesheet">
    <link href="/candy/public/static/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
    <!--[if lt IE 9]>
    <script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
    <style>
        form .input-order {
            margin-bottom: 0px;
            padding: 0 2px;
            width: 42px;
            font-size: 12px;
        }

        form .input-order:focus {
            outline: none;
        }

        .table-actions {
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 0px;
        }

        .table-list {
            margin-bottom: 0px;
        }

        .form-required {
            color: red;
        }
    </style>
    <script type="text/javascript">
        //全局变量
        var GV = {
            ROOT: "/candy/public/",
            WEB_ROOT: "/candy/public/",
            JS_ROOT: "static/js/",
            APP: '<?php echo \think\Request::instance()->module(); ?>'/*当前应用名*/
        };
    </script>
    <script src="/candy/public/themes/admin_simpleboot3/public/assets/js/jquery-1.10.2.min.js"></script>
    <script src="/candy/public/static/js/wind.js"></script>
    <script src="/candy/public/themes/admin_simpleboot3/public/assets/js/bootstrap.min.js"></script>
    <script>
        Wind.css('artDialog');
        Wind.css('layer');
        $(function () {
            $("[data-toggle='tooltip']").tooltip();
            $("li.dropdown").hover(function () {
                $(this).addClass("open");
            }, function () {
                $(this).removeClass("open");
            });
        });
    </script>
    <?php if(APP_DEBUG): ?>
        <style>
            #think_page_trace_open {
                z-index: 9999;
            }
        </style>
    <?php endif; ?>
</head>
<body>
<div class="wrap js-check-wrap">
    <ul class="nav nav-tabs">
        <!--<li><a href="<?php echo url('AdminPage/index'); ?>">所有页面</a></li>-->
        <!--<li><a href="<?php echo url('AdminPage/add'); ?>">添加页面</a></li>-->
        <li class="active"><a href="#">编辑页面</a></li>
    </ul>
    <form action="<?php echo url('AdminOauth/edit'); ?>" method="post" class="form-horizontal js-ajax-form margin-top-20">
        <div class="row">
            <div class="col-md-9">
                <table class="table table-bordered">
                    <tr>
                        <th width="100">姓名<span class="form-required">*</span></th>
                        <td>
                            <input type="hidden" name="id" value="<?php echo $post['id']; ?>">
                            <input class="form-control" type="text" style="width: 400px;" name="name"
                                   required
                                   value="<?php echo $post['name']; ?>" placeholder="请输入姓名"/>
                        </td>
                    </tr>
                    <tr>
                        <th width="100">电话</th>
                        <td>
                            <input class="form-control" type="text" style="width: 400px;" name="tel"
                                   value="<?php echo $post['tel']; ?>" placeholder="请输入电话"/>
                        </td>
                    </tr>
                    <tr>
                        <th width="100">微信</th>
                        <td>
                            <input class="form-control" type="text" style="width: 400px;" name="wx"
                                   value="<?php echo $post['wx']; ?>" placeholder="请输入微信"/>
                        </td>
                    </tr>
                    <tr>
                        <th width="100">钱包地址</th>
                        <td>
                            <input class="form-control" type="text" style="width: 400px;" name="wallet"
                                   value="<?php echo $post['wallet']; ?>" placeholder="请输入钱包地址"/>
                        </td>
                    </tr>
                    <tr>
                        <th width="100">上级id</th>
                        <td>
                            <input class="form-control" type="text" style="width: 400px;" name="parent_id"
                                   value="<?php echo $post['parent_id']; ?>" placeholder="请输入上级id"/>
                        </td>
                    </tr>
                    <tr>
                        <th width="100">积分</th>
                        <td>
                            <input class="form-control" type="text" style="width: 400px;" name="score"
                                   value="<?php echo $post['score']; ?>" placeholder="请输入积分"/>
                        </td>
                    </tr>


                    </tbody>
                </table>
                <div class="form-group">
                    <div class="col-sm-offset-2 col-sm-10">
                        <button type="submit" class="btn btn-primary js-ajax-submit"><?php echo lang('SAVE'); ?></button>
                        <a class="btn btn-default" href="<?php echo url('AdminOauth/index'); ?>"><?php echo lang('BACK'); ?></a>
                    </div>
                </div>
            </div>
            <div class="col-md-3">

            </div>
        </div>
    </form>
</div>
<script type="text/javascript" src="/candy/public/static/js/admin.js"></script>
<script type="text/javascript">
    //编辑器路径定义
    var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="/candy/public/static/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="/candy/public/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) {
        }

        $('#more-template-select').val("<?php echo (isset($post['more']['template']) && ($post['more']['template'] !== '')?$post['more']['template']:''); ?>");
    });
</script>
</body>
</html>