1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='order_shift/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <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-left nowrap'>审核状态</th>
- <th class='text-left nowrap'>积分转换</th>
- <th class="text-center nowrap">添加时间</th>
- <th class="text-center nowrap">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='list-table-check-td think-checkbox'>{notempty name='vo.headimg'}<img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">{/notempty}</td>
- <td class='text-left nowrap'>{$vo.name|default='--'}</td>
- <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
- <td class='text-left nowrap'>{$vo.order_no|default='--'}</td>
- <td class='text-left nowrap'>{$sh_status_desc[$vo['sh_status']]|default=''}</td>
- <td class='text-left nowrap'>{$vo.integral|default='--'}</td>
- <td class='text-center nowrap'>{$vo.create_at}</td>
- <td class='text-center nowrap'>
- {if $vo['sh_status']}
- <a data-title="审核" class="layui-btn layui-btn-sm" data-modal='{:url("aduit")}?id={$vo.id}'>查看</a>
- {else}
- <a data-title="审核" class="layui-btn layui-btn-sm layui-btn-warm" data-modal='{:url("aduit")}?id={$vo.id}'>审核</a>
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|