12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='coupon_list/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='list-table-check-td think-checkbox'>
- <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
- </th>
- <th class='text-left nowrap'>用户昵称</th>
- <th class='text-left nowrap'>优惠券名称</th>
- <th class='text-left nowrap'>限制时间</th>
- <th class='text-left nowrap'>优惠金额</th>
- <th class="text-center">状态</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='list-table-check-td think-checkbox'>
- <input class="list-check-box" value='{$vo.id}' type='checkbox'>
- </td>
- <td class='text-left nowrap'>
- 用户昵称:{$vo.member.name|default='--'}<br>
- 用户手机:{$vo.member.phone|default=''}
- </td>
- <td class='text-left nowrap'>
- {$vo.title|default=''}
- </td>
- <td class='text-left nowrap'>
- {$vo.start} 至 {$vo.end}
- </td>
- <td class='text-left nowrap'>
- 满{$vo.low_amount}元立减{$vo.amount}元
- </td>
- <td class='text-center nowrap'>
- {if $vo['status']==0}<span class="layui-badge">未使用</span>{elseif $vo['status']==1}<span class="layui-badge layui-bg-green">已使用</span>{else}<span class="layui-badge layui-bg-green">已过期</span>{/if}<br>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|