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

21 lines
725 B
HTML

<div style='max-height:500px;overflow:auto;min-width:850px;'>
<table class="table table-hover" style="min-width:850px;">
<thead>
<th>模板名称</th>
<th>选择</th>
</thead>
<tbody>
{loop $ds $row}
<tr>
<td>{$row['title']}</td>
<td style="width:80px;"><a href="javascript:;" onclick='biz.selector.set(this,{php echo json_encode($row)})'>选择</a></td>
</tr>
{/loop}
{if count($ds)<=0}
<tr>
<td colspan='5' align='center'>未找到任何群发模板, 点击 <a href="{php echo webUrl('tmessage',array('op'=>'post'))}">【创建群发模板】</a></td>
</tr>
{/if}
</tbody>
</table>
</div>