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.
50 lines
2.0 KiB
50 lines
2.0 KiB
{extend name="admin@public/base" /}
|
|
{block name="main-content"}
|
|
<div class="page-content">
|
|
<br/>
|
|
<br/>
|
|
<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.orgname}</td>
|
|
<td>{$v.major}</td>
|
|
<td>{$v.company}</td>
|
|
<td>{$v.buscode}</td>
|
|
<td>{$v.established}</td>
|
|
<td>{$v.create_time}</td>
|
|
<td>
|
|
<a href="/admin/feedback/cudetail?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}
|
|
|