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

105 lines
3.9 KiB
HTML

{template '_header'}
<div class="page-heading">
<span class='pull-right'>
{ifp 'sysset.payment.add'}
<a class='btn btn-primary btn-sm' href="{php echo webUrl('sysset/payment/add')}"><i class="fa fa-plus"></i> 添加新模板</a>
{/if}
</span>
<h2>支付模板管理</h2></div>
<form action="" method="post">
<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="sysset.payment"/>
<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 'sysset.payment.delete'}
<button class="btn btn-default btn-sm dropdown-toggle" type="button" data-toggle='batch-remove' data-confirm="确认要删除?" data-href="{php echo webUrl('sysset/payment/delete')}">
<i class='fa fa-trash'></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>
{if count($list)>0}
<table class="table table-responsive table-hover">
<thead>
<tr>
<th style="width:25px;"><input type='checkbox'/></th>
<th>模板名称</th>
<th>支付类型</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{loop $list $row}
<tr>
<td>
<input type='checkbox' value="{$row['id']}"/>
</td>
<td>{$row['title']}</td>
<td>
<span class="label label-success">
{if $row['paytype']==0}
{php echo isset($payment[$row['type']]) ? $payment[$row['type']] : '未知';}
{elseif $row['paytype']==1}
{php echo isset($paytypeali[$row['type']]) ? $paytypeali[$row['type']] : '未知';}
{/if}
</span>
</td>
<td>
{ifp 'sysset.payment.edit'}
<a class='btn btn-default btn-sm' href="{php echo webUrl('sysset/payment/edit', array('id' => $row['id']))}"><i class='fa fa-edit'></i>
{ifp 'sysset.payment.edit'}编辑{else}查看{/if}</a>{/if}
{ifp 'sysset.payment.delete'}<a class='btn btn-default btn-sm' data-toggle='ajaxRemove' href="{php echo webUrl('sysset/payment/delete', array('id' => $row['id']))}" data-confirm="确认删除此模板吗?"><i class='fa fa-trash'></i>
删除</a>{/if}
</tr>
{/loop}
</tbody>
</table>
{$pager}
{else}
<div class='panel panel-default'>
<div class='panel-body' style='text-align: center;padding:30px;'>
暂时没有任何支付模板!
</div>
</div>
{/if}
</div>
</form>
{template '_footer'}