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.
 
 
 
 
 

99 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-12 margintop5">
<form name="sch_list_sea" class=" form-inline" method="post" action="{:url('fdlist')}">
<div class="form-group">
<label >账号</label>
<input type="text" class="form-control" name="account" placeholder="客户账号" value="{$account}">
</div>
<div class="form-group">
<label >电话</label>
<input type="text" class="form-control" name="tel" placeholder="客户电话" value="{$tel}">
</div>
<div class="form-group">
<label >所属机构</label>
<input type="text" class="form-control" name="org" placeholder="所属机构" value="{$org}">
</div>
<div class="form-group">
<label >参与平台</label>
<input type="text" class="form-control" name="platform" placeholder="参与平台" value="{$platform}">
</div>
<div class="form-group">
<label >投诉主体</label>
<input type="text" class="form-control" name="target" placeholder="投诉主体" value="{$target}">
</div>
<div class="form-group">
<label > 投诉开始时间</label>
<input type="text" class="form-control date-picker" name="startdate" data-date-format="yyyy-mm-dd" placeholder="开始时间" value="{$startdate}">
</div>
<div class="form-group">
<label > 投诉结束时间</label>
<input type="text" class="form-control date-picker" name="enddate" data-date-format="yyyy-mm-dd" placeholder="结束时间" value="{$enddate}">
</div>
<button type="submit" class="btn btn-sm btn-danger">搜索</button>
</form>
</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>
<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>{$v.state}</td>
<td>{$v.score}</td>
<td>
<a class="{$v.color}" 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 -->
<<script type="text/javascript">
$(function(){
$('.date-picker').datepicker({
autoclose: true,
todayHighlight: true,
language:'zh-CN',
})
})
</script>
{/block}