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.
 
 
 
 
 

108 lines
4.1 KiB

{extend name="admin@public/base" /}
{block name="main-content"}
<div class="page-content">
<div class="row maintop">
<div class="col-xs-4 col-sm-2 margintop5">
</div>
<div class="col-xs-10 col-sm-5 margintop5">
<form name="sch_list_sea" class="form-search" method="post" action="{:url('cult4/Cult4/apply_list9',['search_all'=>$search_all,'apply_type'=>input('apply_type')])}">
<div class="input-group">
<span class="input-group-addon">
<i class="ace-icon fa fa-check"></i>
</span>
<input type="text" name="search_name" class="form-control" value="{$search_name}" placeholder="输入需查询的企业名称/项目名称/申请人名称" />
<span class="input-group-btn">
<button type="submit" class="btn btn-purple btn-sm">
<span class="ace-icon fa fa-search icon-on-right bigger-110"></span>
搜索
</button>
</span>
</div>
</form>
</div>
<div class="col-xs-2 col-sm-2 margintop5">
<div class="input-group-btn">
<a href="{:url('cult4/Cult4/apply_list9',['search_all'=>1,'apply_type'=>input('apply_type')])}">
<button type="button" class="btn btn-sm btn-purple">
<span class="ace-icon fa fa-globe icon-on-right bigger-110"></span>
全部状态{if condition="$search_all eq 1"}(激活){/if}
</button>
</a>
</div>
<div class="input-group-btn">
<a href="{:url('cult4/Cult4/apply_list9',['search_all'=>0,'apply_type'=>input('apply_type')])}">
<button type="button" class="btn btn-sm btn-pink">
<span class="ace-icon fa fa-globe icon-on-right bigger-110"></span>
当前状态{if condition="$search_all eq 0"}(激活){/if}
</button>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div>
<form id="leftnav" name="leftnav" method="post" action="" >
<table class="table table-striped table-bordered table-hover" id="dynamic-table">
<thead>
<tr>
<th style="width: 80px;">ID</th>
<th style="width: 250px;">申请用户名</th>
<th style="width: 80px;">用户状态</th>
<th style="width: 430px;">企业名称/项目名称/申请人名称</th>
<th style="width: 200px;">处理状态</th>
<th style="width: 160px;">申请日期</th>
<th style="width: 100px;">缴费状态</th>
<th style="border-right:#CCC solid 1px;">操作</th>
<th style="display:none;">处理号</th>
</tr>
</thead>
<tbody>
{foreach name="apply_list" item="v"}
<tr>
<td height="28" >{$v.apply_id}</td>
<td>{$v.username}</td>
<td>{if condition="$v['userstatus'] eq 1"}正常{else/}锁定{/if}</td>
<td>{$v.applyname}</td>
<td>{$v.checkstatus}</td>
<td>{$v.create_time|date='Y-m-d H:i:s',###}</td>
<td>{if condition="get_cult4feeflag($v.apply_id) eq 1"}已缴费{else/}未缴费{/if}</td>
<td>
<div class="hidden-sm hidden-xs action-buttons">
{if condition="in_array($v.status,[4,8,11,13,17,34,16,28])"}
{if condition="get_cult4UserStatus($v.user_id,1) eq 1"}
{if condition="$v.apply_admin_id eq 0"}
<a class="green rst-url-btn" href="{:url('cult4/Cult4/apply_applyed9',array('apply_id'=>$v['apply_id'],'seq'=>$v['seq'],'apply_type'=>input('apply_type')))}" title="受理">
<i class="ace-icon fa fa-lock bigger-130"></i> 受理
</a>
{elseif condition="$loginuser==$v.apply_admin_id"}
<a class="blue" href="{:url('cult4/Cult4/apply_check9',array('apply_id'=>$v['apply_id'],'apply_type'=>input('apply_type')))}" title="审核">
<i class="ace-icon fa fa-gavel bigger-130"></i> 审核
</a>
{/if}
{/if}
{/if}
</div>
</td>
<td style="display:none;">{$v.seq}</td>
</tr>
{/foreach}
<tr>
<td height="50" colspan="10" align="left">{$page}</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
</div>
</div><!-- /.page-content -->
{/block}