index.html 1.7 KB
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
    <ul class="nav nav-tabs">
        <li class="active"><a href="javascript:;">所有字段</a></li>
    </ul>
    <form class="js-ajax-form" action="" method="post">
        <table class="table table-hover table-bordered table-list">
            <thead>
            <tr>
                <th width="50">ID</th>
                <th>页面名称</th>
                <th>二维码</th>
                <th>页面地址</th>
                <th width="130">生成时间</th>
            </tr>
            </thead>
            <foreach name="list" item="vo">
                <tr>
                    <td><b>{$vo.id}</b></td>
                    <td>{$vo.name}</td>
                    <td>
                        <a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo.qrcode)}');">
                            <i class="fa fa-photo fa-fw"></i>
                        </a>
                    </td>
                    <td><a href="{$vo.url}" target="_blank">查看页面</a></td>
                    <td>{:date('Y-m-d H:i',$vo.create_time)}</td>
                </tr>
            </foreach>
            <tfoot>
            <tr>
                <th width="50">ID</th>
                <th>页面名称</th>
                <th>二维码</th>
                <th>页面地址</th>
                <th width="130">生成时间</th>
            </tr>
            </tfoot>
        </table>
        <ul class="pagination">{$page|default=''}</ul>
    </form>
</div>
<script src="__STATIC__/js/admin.js"></script>
<script>
    function reloadPage(win) {
        win.location.reload();
    }
</script>
</body>
</html>