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.
 
 
 
 
 

100 lines
3.3 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_list110',['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_list110',['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>
</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>
{$status[$v.status]}中({$status[60]}已通过)
</td>
<td>
{if($v.apply_status == 0)}等待入库{/if}
{if($v.apply_status == 3)}办理入库{/if}
{if($v.apply_status == 1)}完成入库{/if}
</td>
<td>{$v.create_time|date='Y-m-d H:i:s',###}</td>
<td>
<div class=" action-buttons">
<a class="blue" href="{:url('capital/Capital/apply_check110',array('apply_id'=>$v['apply_id'],'apply_type'=>input('apply_type')))}" title="审核">
<i class="ace-icon fa fa-gavel bigger-130"></i> 审核
</a>
</div>
</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}