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.
113 lines
3.8 KiB
113 lines
3.8 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('capital/Capital/apply_list50',['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('capital/Capital/apply_list30',['search_all'=>-1])}">
|
|
<button type="button" class="btn btn-sm btn-purple">
|
|
<span class="ace-icon fa fa-globe icon-on-right bigger-110"></span>
|
|
全部状态
|
|
</button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div>
|
|
<form id="leftnav" name="leftnav" method="post" action="" >
|
|
<div class="table-responsive">
|
|
<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: 100px;">用户状态</th>
|
|
<th style="width: 250px;">托管方名称/托管资产名称</th>
|
|
<th style="width: 100px;">申请类型</th>
|
|
<th style="width: 250px;">申请流程</th>
|
|
<th style="width: 100px;">处理状态</th>
|
|
<th style="width: 200px;">申请日期</th>
|
|
<th style="border-right:#CCC solid 1px;">操作</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.hoster_name}</td>
|
|
<td>{$apply_types[$v.apply_type]}</td>
|
|
<td>
|
|
{if($apply_type == 2)}
|
|
{$status[$v.status]}中({$status[100]}已通过)
|
|
{else}
|
|
{$status[$v.status]}中({$status[$v.status-10]}已通过)
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
{if($v.apply_status == 0)}待审核{/if}
|
|
{if($v.apply_status == 1)}审核通过{/if}
|
|
{if($v.apply_status == 2)}审核不通过{/if}
|
|
</td>
|
|
<td>{$v.create_time|date='Y-m-d H:i:s',###}</td>
|
|
<td>
|
|
{if($v.apply_status == 0)}
|
|
<div class="action-buttons">
|
|
<a class="blue" href="{:url('capital/Capital/apply_check50',array('apply_id'=>$v['apply_id'],'apply_type'=>input('apply_type')))}" title="审核">
|
|
<i class="ace-icon fa fa-gavel bigger-130"></i> 审核
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
{if($v.apply_status != 0)}
|
|
<div class="action-buttons">
|
|
<a class="blue" href="{:url('capital/Capital/apply_detail50',array('apply_id'=>$v['apply_id'],'status'=>$v['status'],'apply_type'=>input('apply_type')))}" title="查看">
|
|
<i class="ace-icon fa fa-gavel bigger-130"></i> 查看
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
</td>
|
|
|
|
</tr>
|
|
{/foreach}
|
|
<tr>
|
|
<td height="50" colspan="10" align="left">{$page}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div><!-- /.page-content -->
|
|
{/block}
|
|
|