wpfw_ewei_shopv2/plugin/bargain/template/web/recycle.html
2023-02-14 19:57:32 +08:00

87 lines
3.9 KiB
HTML

{template '_header'}
<div class="page-content">
<div class="page-heading">
{ifp 'bargain.warehouse'}
<span class='pull-right'>
<a class='btn btn-primary btn-sm' href="{php echo webUrl('bargain/warehouse');}"><i class='fa fa-plus'></i> 添加商品</a>
</span>{/if}
<h1>
<span class='label label-success' style="background-color: #a5a6a4">
回收站</span>
</h1> </div>
<form action="" method="post" class="form-horizontal form-search" role="form">
<div class="input-group">
<input type="text" class="input-sm form-control" name="search" value="" placeholder="商品名称" style="width: 300px;float: right;"> <span class="input-group-btn">
<button class="btn btn-sm btn-primary" type="submit" style="float: left"> 搜索</button> </span>
</div>
</form>
<br>
<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="goods" />
<input type="hidden" name="goodsfrom" value="sale" />
</form>
<table class="table table-hover table-responsive">
<thead class="navbar-inner">
<tr>
<th style="width:60px;">商品</th>
<th style="width:180px;">&nbsp;</th>
<th style="width:80px;" >标价</th>
<th style="width:80px;" >底价</th>
<th style="width:80px;" >库存</th>
<th style="width:150px;" >状态</th>
<th style="">操作</th>
</tr>
</thead>
<tbody>
{loop $onSell $key $value}
<tr>
<td>
<img src="{php echo tomedia($value['thumb']);}" style="width:40px;height:40px;padding:1px;border:1px solid #ccc;" />
</td>
<td class='full' style="overflow-x: hidden">
<br/>
<a>{$value['title']}</a>
</td>
<td>
<a>{$value['marketprice']}</a>
</td>
<td>
<a>{$value['end_price']}</a>
</td>
<td>
<a>{$value['total']}</a>
</td>
<td><font color="#ff1c17">此活动已被删除</font></td>
<td style="overflow:visible;position:relative">
{ifp 'bargain.recycle'}<a class='btn btn-default btn-sm' data-toggle="ajaxRemove" href="{php echo webUrl('bargain/recover',array('id'=>$value['id']));}" data-confirm='确认恢复此商品?'><i class='fa fa-repeat'></i> 恢复</a>{/if}
{ifp 'bargain.react'}<a class='btn btn-default btn-sm' href="{php echo webUrl('bargain/react',array('actid'=>$value['id']));}" title="编辑"><i class='fa fa-edit'></i> 编辑</a>{/if}
{ifp 'bargain.delete'}<a class='btn btn-default btn-sm' data-toggle="ajaxRemove" href="{php echo webUrl('bargain/delete',array('id'=>$value['id']));}" data-confirm='确认删除此商品?'><i class='fa fa-trash'></i> 彻底删除</a>{/if}
</td>
</tr>
{/loop}
</tbody>
</table>
</div>
<script language="javascript">myrequire(['web/init'],function(){
if($('.form-validate').length<=0) { $('#page-loading').remove(); }
});</script>
<div id="page-loading" style="position: fixed;width:100%;height:100%;background:rgba(255,255,255,0.8);left:0;top:0;z-index:9999">
<div class="sk-spinner sk-spinner-double-bounce" style="position:fixed;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px;">
<div class="sk-double-bounce1"></div>
<div class="sk-double-bounce2"></div>
</div>
</div>
{$pager}
{template '_footer'}