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.
 
 
 
 
 

56 lines
2.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>
<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: 250px;">电话</th>
<th style="width: 250px;">参与平台</th>
<th style="width: 250px;">所属机构</th>
<th style="width: 250px;">客户投诉主体</th>
<th style="width: 250px;">创建时间</th>
<th style="width: 250px;">操作</th>
</tr>
</thead>
<tbody>
{foreach name="fdlist" item="v"}
<tr>
<td>{$v.id}</td>
<td>{$v.name}</td>
<td>{$v.tel}</td>
<td>{$v.platform}</td>
<td>{$v.org}</td>
<td>{$v.target}</td>
<td>{$v.create_time|date='Y-m-d H:i:s',###}</td>
<td>
<a class="blue" href="/admin/feedback/detail?id={$v.id}" title="查看详情">
<i class="ace-icon fa fa-gavel bigger-130"></i> 查看详情
</a>
</td>
</tr>
{/foreach}
</tbody>
</table>
</form>
</div>
</div>
</div>
</div><!-- /.page-content -->
{/block}