why.xingtongworld.com项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

83 lines
2.9 KiB

{extend name="admin@public/base" /}
{block name="main-content"}
<div class="page-content">
<div class="row maintop">
<div class="col-xs-5 col-sm-2 margintop5">
<a href="{:url('admin/Gpgl/sub_export',['cid'=>$cid,'kind'=>input('kind')])}">
<button class="btn btn-sm btn-danger">
<i class="ace-icon fa fa-bolt bigger-110"></i>
导出数据
</button>
</a>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div>
<form id="alldel" name="alldel" method="post" action="{:url('admin/Gpgl/sub_alldel',['cid'=>$cid])}" >
<input name="p" id="p" value="{:input('p',1)}" type="hidden" />
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover" id="dynamic-table">
<thead>
<tr>
<th class="hidden-xs center">
<label class="pos-rel">
<input type="checkbox" class="ace" id='chkAll' onclick='CheckAll(this.form)' value="全选"/>
<span class="lbl"></span>
</label>
</th>
{if condition="$cid eq 3"}
<th class="hidden-xs">ID</th>
<th>拍品名称</th>
<th>姓名</th>
<th>联系电话</th>
<th>备注</th>
<th class="hidden-xs">发布时间</th>
{elseif condition="$cid eq 4"}
<th class="hidden-xs">ID</th>
<th>姓名</th>
<th>联系电话</th>
<th>出席人数</th>
<th class="hidden-xs">发布时间</th>
{elseif condition="$cid eq 5"}
<th class="hidden-xs">ID</th>
<th>姓名</th>
<th>联系电话</th>
<th>身份证号码</th>
<th>成员层级</th>
<th>备注</th>
<th class="hidden-xs">发布时间</th>
{else}
<th class="hidden-xs">ID</th>
<th>产品名称</th>
<th>托管类型</th>
<th>托管平台</th>
<th>托管类别</th>
<th>托管子类别</th>
<th>姓名</th>
<th>联系电话</th>
<th>邮箱</th>
<th class="hidden-xs">发布时间</th>
{/if}
<th style="border-right:#CCC solid 1px;">操作</th>
</tr>
</thead>
<tbody id="ajax-data">
{if condition="$cid eq 3"}
{include file="gpgl/ajax_sub_list3"/}
{elseif condition="$cid eq 4"}
{include file="gpgl/ajax_sub_list4"/}
{elseif condition="$cid eq 5"}
{include file="gpgl/ajax_sub_list5"/}
{else}
{include file="gpgl/ajax_sub_list"/}
{/if}
</tbody>
</table>
</div>
</form>
</div>
</div>
</div>
</div><!-- /.page-content -->
{/block}