127 lines
5.9 KiB
HTML
127 lines
5.9 KiB
HTML
{template '_header'}
|
|
<div class="page-heading">
|
|
<span class='pull-right'>
|
|
{ifp 'shop.nav.add'}
|
|
<a class='btn btn-primary btn-sm' href="{php echo webUrl('shop/nav/add')}"><i class='fa fa-plus'></i> 添加首页导航</a>
|
|
{/if}
|
|
</span>
|
|
<h2>导航管理</h2> </div>
|
|
|
|
<form action="./index.php" method="get" class="form-horizontal form-search" role="form">
|
|
<input type="hidden" name="c" value="site" />
|
|
<input type="hidden" name="a" value="entry" />
|
|
<input type="hidden" name="m" value="{EWEI_SHOP_V2_MODULE_NAME}" />
|
|
<input type="hidden" name="do" value="web" />
|
|
<input type="hidden" name="r" value="shop.nav" />
|
|
<div class="page-toolbar row m-b-sm m-t-sm">
|
|
<div class="col-sm-4">
|
|
<div class="input-group-btn">
|
|
<button class="btn btn-default btn-sm" type="button" data-toggle='refresh'><i class='fa fa-refresh'></i></button>
|
|
{ifp 'shop.nav.edit'}
|
|
<button class="btn btn-default btn-sm" type="button" data-toggle='batch' data-href="{php echo webUrl('shop/nav/status',array('status'=>1))}"><i class='fa fa-circle'></i> 显示</button>
|
|
<button class="btn btn-default btn-sm" type="button" data-toggle='batch' data-href="{php echo webUrl('shop/nav/status',array('status'=>0))}"><i class='fa fa-circle-o'></i> 隐藏</button>
|
|
{/if}
|
|
{ifp 'shop.nav.delete'}
|
|
<button class="btn btn-default btn-sm" type="button" data-toggle='batch-remove' data-confirm="确认要删除?" data-href="{php echo webUrl('shop/nav/delete')}"><i class='fa fa-trash'></i> 删除</button>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col-sm-6 pull-right">
|
|
<select name="status" class='form-control input-sm select-sm'>
|
|
<option value="" {if $_GPC['status'] == ''} selected{/if}>状态</option>
|
|
<option value="1" {if $_GPC['status']== '1'} selected{/if}>显示</option>
|
|
<option value="0" {if $_GPC['status'] == '0'} selected{/if}>隐藏</option>
|
|
</select>
|
|
<div class="input-group">
|
|
<input type="text" class="input-sm form-control" name='keyword' value="{$_GPC['keyword']}" placeholder="请输入关键词"> <span class="input-group-btn">
|
|
|
|
<button class="btn btn-sm btn-primary" type="submit"> 搜索</button> </span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</form>
|
|
|
|
<form action="" method="post">
|
|
{if count($list)>0}
|
|
<table class="table table-responsive table-hover" >
|
|
<thead class="navbar-inner">
|
|
<tr>
|
|
<th style="width:25px;"><input type='checkbox' /></th>
|
|
<th style='width:50px'>顺序</th>
|
|
<th style='width:45px; text-align: center;'>图标</th>
|
|
<th style='width: 140px;'>标题</th>
|
|
<th>链接</th>
|
|
<th style='width:60px'>显示</th>
|
|
<th style="width: 145px;">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{loop $list $row}
|
|
<tr>
|
|
<td>
|
|
<input type='checkbox' value="{$row['id']}"/>
|
|
</td>
|
|
<td>
|
|
{ifp 'shop.nav.edit'}
|
|
<a href='javascript:;' data-toggle='ajaxEdit' data-href="{php echo webUrl('shop/nav/displayorder',array('id'=>$row['id']))}" >{$row['displayorder']}</a>
|
|
{else}
|
|
{$row['displayorder']}
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
<img style="width:30px;height:30px;padding1px;border:1px solid #ccc" src="{php echo tomedia($row['icon'])}">
|
|
</td>
|
|
<td>{$row['navname']}</td>
|
|
<td>{$row['url']}</td>
|
|
<td>
|
|
|
|
<span class='label {if $row['status']==1}label-success{else}label-default{/if}'
|
|
{ifp 'shop.nav.edit'}
|
|
data-toggle='ajaxSwitch'
|
|
data-switch-value='{$row['status']}'
|
|
data-switch-value0='0|隐藏|label label-default|{php echo webUrl('shop/nav/status',array('status'=>1,'id'=>$row['id']))}'
|
|
data-switch-value1='1|显示|label label-success|{php echo webUrl('shop/nav/status',array('status'=>0,'id'=>$row['id']))}'
|
|
{/if}>
|
|
{if $row['status']==1}显示{else}隐藏{/if}
|
|
</span>
|
|
|
|
|
|
</td>
|
|
<td style="text-align:left;">
|
|
{ifp 'shop.nav.view|shop.nav.edit'}
|
|
<a href="{php echo webUrl('shop/nav/edit', array('id' => $row['id']))}" class="btn btn-default btn-sm">
|
|
<i class='fa fa-edit'></i> {ifp 'shop.nav.edit'}修改{else}查看{/if}
|
|
</a>
|
|
{/if}
|
|
{ifp 'shop.nav.delete'}
|
|
<a data-toggle='ajaxRemove' href="{php echo webUrl('shop/nav/delete', array('id' => $row['id']))}"class="btn btn-default btn-sm" data-confirm='确认要删除此首页导航吗?'><i class="fa fa-trash"></i> 删除</a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
<tr>
|
|
<td colspan='7'>
|
|
<div class='pagers' style='float:right;'>
|
|
{$pager}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{$pager}
|
|
{else}
|
|
<div class='panel panel-default'>
|
|
<div class='panel-body' style='text-align: center;padding:30px;'>
|
|
暂时没有任何首页导航!
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
</form>
|
|
|
|
|
|
{template '_footer'}
|