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

89 lines
3.3 KiB
HTML

{template '_header'}
<div class="page-heading">
<span class='pull-right'>
{ifp 'sysset.tmessage'}
<a class='btn btn-primary btn-sm' href="{php echo webUrl('sysset/weixintemplate')}"><i class="fa fa-plus"></i> 微信模板管理</a>
{/if}
{ifp 'sysset.tmessage.add'}
<a class='btn btn-primary btn-sm' href="{php echo webUrl('sysset/tmessage/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.tmessage" />
<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.tmessage.delete'}
<button class="btn btn-default btn-sm dropdown-toggle" type="button" data-toggle='batch-remove' data-confirm="确认要删除?" data-href="{php echo webUrl('sysset/tmessage/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>
</tr>
</thead>
<tbody>
{loop $list $row}
<tr><td>
<input type='checkbox' value="{$row['id']}"/>
</td>
<td>{$row['title']}</td>
<td>
{ifp 'sysset.tmessage.edit'}
<a class='btn btn-default btn-sm' href="{php echo webUrl('sysset/tmessage/edit', array('id' => $row['id']))}" ><i class='fa fa-edit'></i> {ifp 'sysset.tmessage.edit'}编辑{else}查看{/if}</a>{/if}
{ifp 'sysset.tmessage.delete'}<a class='btn btn-default btn-sm' data-toggle='ajaxRemove' href="{php echo webUrl('sysset/tmessage/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'}