wpfw_ewei_shopv2/template/web/sale/package/index.html
2023-02-14 19:57:32 +08:00

88 lines
4.4 KiB
HTML

{template '_header'}
<style type="text/css">
.table_kf {display: none;}
.table_kf.active {display: table-footer-group;}
</style>
<div class="page-heading">
<span class='pull-right'>
{ifp 'sale.package.add'}
<a class='btn btn-primary btn-sm' href="{php echo webUrl('sale/package/add',array('type'=>$type))}"><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' id='tab' name='type' value="{$_GPC['type']}"/>
<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="sale.package" />
<input type="hidden" name="goodsfrom" value="{$goodsfrom}" />
<ul class="nav nav-arrow-next nav-tabs" id="myTab">
<li class="{if empty($_GPC['type'])}active{/if}" >
<a href="{php echo webUrl('sale/package')}">所有套餐</a>
</li>
<li class="{if $_GPC['type']=='ing'}active{/if}" >
<a href="{php echo webUrl('sale/package',array('type'=>'ing'))}">进行中</a>
</li>
<li class="{if $_GPC['type']=='none'}active{/if}" >
<a href="{php echo webUrl('sale/package',array('type'=>'none'))}">未开始</a>
</li>
<li class="{if $_GPC['type']=='end'}active{/if}">
<a href="{php echo webUrl('sale/package',array('type'=>'end'))}">已结束</a>
</li>
</ul>
<div class="page-toolbar row m-b-sm m-t-sm">
<div class="col-sm-6">
<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 'sale.package.edit'}
<button class="btn btn-default btn-sm" type="button" data-toggle='batch' data-href="{php echo webUrl('sale/package/status',array('status'=>0))}">
<i class='fa fa-circle-o'></i> 下架
</button>
<button class="btn btn-default btn-sm" type="button" data-toggle='batch' data-href="{php echo webUrl('salse/package/status',array('status'=>1))}">
<i class='fa fa-circle'></i> 上架
</button>
{/if}
{ifp 'sale.package.delete1'}
<button class="btn btn-default btn-sm" type="button" data-toggle='batch-remove' data-confirm="如果商品存在购买记录,会无法关联到商品, 确认要彻底删除吗?" data-href="{php echo webUrl('sale/package/delete1')}">
<i class='fa fa-remove'></i> 彻底删除
</button>
{/if}
</div>
</div>
<div class="col-sm-6 pull-right">
<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">
<table class="table table-hover table-responsive">
<thead class="navbar-inner">
<tr>
<th style="width:25px;"><input type='checkbox' /></th>
<th style="width:60px;text-align:center;">排序</th>
<th style="width:80px;">套餐名称</th>
<th style="">&nbsp;</th>
<th style="width:70px;" >价格</th>
<th style="width:60px;" >状态</th>
<th style="width:260px;text-align: center;">操作</th>
</tr>
</thead>
<tbody class=" table_kf {if $_GPC['type']=='all' || empty($_GPC['type'])}active{/if}" id="tab_all">{template 'sale/package/list'}</tbody>
<tbody class=" table_kf {if $_GPC['type']=='ing'}active{/if}" id="tab_ing">{template 'sale/package/list'}</tbody>
<tbody class=" table_kf {if $_GPC['type']=='none'}active{/if}" id="tab_none">{template 'sale/package/list'}</tbody>
<tbody class=" table_kf {if $_GPC['type']=='end'}active{/if}" id="tab_end">{template 'sale/package/list'}</tbody>
</table>
</form>
<div style="text-align:right;width:100%;">
{$pager}
</div>
{template '_footer'}