index.html 7.9 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>
        <li><a href="{:url('AdminClass/add')}">添加课程</a></li>
    </ul>
    <form class="well form-inline margin-top-20" method="post" action="{:url('AdminClass/index')}">
        创建时间:
        <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">
        所属场所:
        <select class="form-control" name="room" style="width: 140px;">
            <option value="">全部</option>
            <foreach name="room" item="vo">
            <option value="{$vo.id}" <eq name="select_room" value="$vo.id">selected</eq>>{$vo.name}</option>
            </foreach>
        </select>
        所属产品:
        <select class="form-control" name="product" style="width: 140px;">
            <option value="">全部</option>
            <foreach name="product" item="vo">
                <option value="{$vo.id}" <eq name="select_product" value="$vo.id">selected</eq>>{$vo.name}</option>
            </foreach>
        </select>
        <!--发布状态:-->
        <!--<select class="form-control" name="status" style="width: 140px;">-->
            <!--<option value="">全部</option>-->
            <!--<option value="0" <eq name="status" value="1">selected</eq>>未开课</option>-->
            <!--<option value="1" <eq name="status" value="2">selected</eq>>已开课</option>-->
            <!--<option value="2" <eq name="status" value="3">selected</eq>>已结束</option>-->
        <!--</select> &nbsp;-->
        <input type="submit" class="btn btn-primary" value="搜索"/>
        <a class="btn btn-danger" href="{:url('AdminClass/index')}">清空</a>
    </form>
    <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>总课时</th>
                <th>最大人数/最少人数</th>
                <th>会员价格</th>
                <th>教练费用</th>
                <th>创建时间</th>
                <th>开课时间</th>
                <th>状态</th>
                <th>操作</th>
            </tr>
            </thead>
            <foreach name="list" item="vo">
                <tr>
                    <td><b>{$vo.id}</b></td>
                    <td>{$vo.rname}</td>
                    <td>{$vo.pname}</td>
                    <td>
                        <eq name="vo.type" value="1">团教课程</eq>
                        <eq name="vo.type" value="2">私教课程</eq>
                    </td>
                    <td>{$vo.times}次</td>
                    <td>
                        <eq name="vo.type" value="1">{$vo.min_people}人</eq>
                        <eq name="vo.type" value="2">{$vo.max_people}人</eq>
                    </td>
                    <td>{$vo.price}元</td>
                    <td>{$vo.coach_price}元</td>
                    <td>{:date('Y-m-d H:i:s',$vo.create_time);}</td>
                    <td>{:date('Y-m',$vo.start_time);}</td>
                    <td>
                        <eq name="vo.status" value="1">正常</eq>
                        <eq name="vo.status" value="2">已下线</eq>
                        <eq name="vo.status" value="3">教练申请中</eq>
                    </td>
                    <td>
                        <a href="{:url('AdminClass/edit',array('id'=>$vo['id']))}">编辑</a>&nbsp;

                        <a href="javascript:parent.openIframeLayer('{:url('AdminClass/coach',array('id'=>$vo['id']))}','教练申请');">教练申请</a>
                        <neq name="vo.status" value="3">
                            <a href="javascript:parent.openIframeLayer('{:url('AdminClass/user',array('id'=>$vo['id']))}','会员申请');" <eq name="is_red" value="1">class="text-danger"</eq>>会员申请</a>
                        </neq>
                        <a href="javascript:parent.openIframeLayer('{:url('AdminClass/course',array('id'=>$vo['id']))}','课程安排');">课程安排</a>
                        <eq name="vo.status" value="1">
                            <a href="{:url('AdminClass/cancel',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn">取消课程</a>
                            <else />
                            <a href="{:url('AdminClass/up',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn">课程上线</a>
                        </eq>
                        <a href="{:url('AdminClass/delete',array('id'=>$vo['id']))}" class="js-ajax-dialog-btn">删除</a>
                    </td>
                </tr>
            </foreach>
            <tfoot>
            <tr>
                <th width="50">ID</th>
                <th>所属场所</th>
                <th>所属产品</th>
                <th>课程类型</th>
                <th>总课时</th>
                <th>最大人数/最少人数</th>
                <th>会员价格</th>
                <th>教练费用</th>
                <th>创建时间</th>
                <th>开课时间</th>
                <th>状态</th>
                <th>操作</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();
    }

    $(function () {
        setCookie("refersh_time", 0);
        Wind.use('ajaxForm', 'artDialog', 'iframeTools', function () {
            //批量复制
            $('.js-articles-copy').click(function (e) {
                var ids = [];
                $("input[name='ids[]']").each(function () {
                    if ($(this).is(':checked')) {
                        ids.push($(this).val());
                    }
                });

                if (ids.length == 0) {
                    art.dialog.through({
                        id: 'error',
                        icon: 'error',
                        content: '您没有勾选信息,无法进行操作!',
                        cancelVal: '关闭',
                        cancel: true
                    });
                    return false;
                }

                ids = ids.join(',');
                art.dialog.open("__ROOT__/index.php?g=portal&m=AdminArticle&a=copy&ids=" + ids, {
                    title: "批量复制",
                    width: "300px"
                });
            });
            //批量移动
            $('.js-articles-move').click(function (e) {
                var ids = [];
                $("input[name='ids[]']").each(function () {
                    if ($(this).is(':checked')) {
                        ids.push($(this).val());
                    }
                });

                if (ids.length == 0) {
                    art.dialog.through({
                        id: 'error',
                        icon: 'error',
                        content: '您没有勾选信息,无法进行操作!',
                        cancelVal: '关闭',
                        cancel: true
                    });
                    return false;
                }

                ids = ids.join(',');
                art.dialog.open("__ROOT__/index.php?g=portal&m=AdminArticle&a=move&old_term_id={$term.term_id|default=0}&ids=" + ids, {
                    title: "批量移动",
                    width: "300px"
                });
            });
        });
    });
</script>
</body>
</html>