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

2 lines
650 B
HTML

<div style='max-height:500px;overflow:auto;min-width:850px;'>
<table class="table table-hover" style="min-width:850px;">
<tbody>
{loop $ds $row}
<tr>
<td><img src='{php echo tomedia($row['thumb'])}' style='width:30px;height:30px;padding1px;border:1px solid #ccc' /> {$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='4' align='center'>未找到优惠券</td>
</tr>
{/if}
</tbody>
</table>
</div>