| 123456789101112131415161718192021222324252627282930313233343536373839 | <form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">    <div class="panel panel-default panel-intro">        <div class="panel-body">            <input class="form-control depart_ids" name="row[depart_id]" type="hidden" value="">            <div class="tableTitle success" style="font-size: 16px;margin: 10px 0">情况说明</div>            <div class="panel-danger">                <span class="text text-danger">学员展示背景突出的表示已添加的学员,可删除</span><br/>                <span class="text text-danger">将需要删除的学员直接选中,仅支持删除学员</span><br/>                <span class="text text-danger"></span>            </div>            <div class="panel-success">                <div>计划参加训练学员数量:<span class="xueyuan_total">{$row.xueyuan_count}</span></div>            </div>            <div id="myTabContent" class="tab-content">                <div class="tab-pane fade active in" id="one">                    <div class="widget-body no-padding">                        <div id="toolbar" class="toolbar">                            {:build_toolbar('refresh')}                        </div>                        <table id="table1" class="table table-striped table-bordered table-hover table-nowrap"                               data-operate-edit="{:$auth->check('category/edit')}"                               data-operate-del="{:$auth->check('category/del')}" data-show-export="false" data-search="false"                               width="100%">                        </table>                    </div>                </div>            </div>        </div>    </div>    <div class="form-group layer-footer">        <label class="control-label col-xs-12 col-sm-2"></label>        <div class="col-xs-12 col-sm-8">            <button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>        </div>    </div></form>
 |