index.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='order_shift/index_search'}
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='text-left nowrap'>头像</th>
  10. <th class='text-left nowrap'>名称</th>
  11. <th class='text-left nowrap'>手机号</th>
  12. <th class='text-left nowrap'>订单号</th>
  13. <th class='text-left nowrap'>审核状态</th>
  14. <th class='text-left nowrap'>积分转换</th>
  15. <th class="text-center nowrap">添加时间</th>
  16. <th class="text-center nowrap">操作</th>
  17. </tr>
  18. </thead>
  19. {/notempty}
  20. <tbody>
  21. {foreach $list as $key=>$vo}
  22. <tr>
  23. <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>
  24. <td class='text-left nowrap'>{$vo.name|default='--'}</td>
  25. <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
  26. <td class='text-left nowrap'>{$vo.order_no|default='--'}</td>
  27. <td class='text-left nowrap'>{$sh_status_desc[$vo['sh_status']]|default=''}</td>
  28. <td class='text-left nowrap'>{$vo.integral|default='--'}</td>
  29. <td class='text-center nowrap'>{$vo.create_at}</td>
  30. <td class='text-center nowrap'>
  31. {if $vo['sh_status']}
  32. <a data-title="审核" class="layui-btn layui-btn-sm" data-modal='{:url("aduit")}?id={$vo.id}'>查看</a>
  33. {else}
  34. <a data-title="审核" class="layui-btn layui-btn-sm layui-btn-warm" data-modal='{:url("aduit")}?id={$vo.id}'>审核</a>
  35. {/if}
  36. </td>
  37. </tr>
  38. {/foreach}
  39. </tbody>
  40. </table>
  41. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  42. </div>
  43. {/block}