Files
2024-10-29 14:04:59 +08:00

98 lines
4.1 KiB
HTML
Executable File

<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
经销管理
<small>经销商列表</small>
</h1>
<ol class="breadcrumb">
<li><a href="<?php echo url('/admin/index/index');?>"><i class="fa fa-dashboard"></i> 首页</a></li>
<li><a href="<?php echo url('/admin/pinglun/lists');?>"> 经销商</a></li>
<li class="active"> 经销商列表</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">经销商列表</h3>
<div class="box-tools pull-right">
<div class="input-group input-group-sm">
<!---->
<div class="input-group-btn">
<button type="button" class="btn btn-default" id="list-search-btn"><i class="fa fa-search"></i></button>
</div>
</div>
</div>
<!-- /.box-tools -->
</div>
<!-- /.box-header -->
<div class="box-body no-padding">
<div class="table-responsive lists-table">
<table class="table table-hover table-bordered">
<tbody>
<tr>
<th width="5%">&nbsp;</th>
<th width="10%">ID</th>
<th width="30%" style="text-align: center">经销商名</th>
<th width="40%" class="text-center" style="margin: auto">经销商地址</th>
<th width="10%">操作</th>
</tr>
{volist name='list' id ='vv'}
<tr>
<th width="5%">&nbsp;</th>
<th width="10%">{$vv.id}</th>
<th width="30%" style="text-align: center">{$vv.name}</th>
<th width="40%" class="text-center" style="margin: auto">{$vv.address}</th>
<th width="10%">
<a class="btn btn-xs btn-info" href="edit?id={$vv.id}">编辑</a>
</th>
</tr>
{/volist}
</tbody>
</table>
<!-- /.table -->
</div>
<!-- /.lists-table -->
</div>
<!-- /.box-body -->
<div class="box-footer no-padding">
<div class="mailbox-controls row">
<div class="col-sm-6">
<button type="button" class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></button>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm" data-url="<?php echo url('/admin/agent/deletes');?>" data-cod="batch">删除</button>
<button type="button" class="btn btn-default btn-sm" data-cod="refresh">刷新</button>
</div>
<!-- /.btn-group -->
</div>
<div class="col-sm-6">
<div class="pull-right">
{$page}
</div>
<!-- /.pull-right -->
</div>
</div>
</div>
</div>
<!-- /.box -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<style>
.table-responsive .table tbody > tr > th,.table-responsive .table thead > tr > td, .table-responsive .table tbody > tr > td {
vertical-align: middle;
}
</style>
<!-- Page Script -->
<script type="text/javascript">
$(function() {
});
</script>