index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {extend name='admin@main'}
  2. {block name="button"}
  3. <button class="layui-btn layui-btn-sm layui-btn-primary" type='button' onclick="javascript:history.back()">返回</button>
  4. {/block}
  5. {block name="content"}
  6. <div class="think-box-shadow">
  7. {include file='approve_info_log/index_search'}
  8. <table class="layui-table margin-top-10" lay-skin="line">
  9. {notempty name='list'}
  10. <thead>
  11. <tr>
  12. <th class='text-left nowrap'>审批人</th>
  13. <th class='text-left nowrap'>修改时间</th>
  14. <th class="text-center">操作</th>
  15. </tr>
  16. </thead>
  17. {/notempty}
  18. <tbody>
  19. {foreach $list as $key=>$vo}
  20. <tr>
  21. <td class='text-left nowrap'>
  22. <p>用户姓名:{$vo.user.name|default='--'}</p>
  23. <p class="color-desc">手机号码:{$vo.user.mobile|default="--"}</p>
  24. </td>
  25. <td class='text-left nowrap'>
  26. {$vo.create_at|default="--"}
  27. </td>
  28. <td class='text-center nowrap'>
  29. <a class="layui-btn layui-btn-xs" data-open="{:url('edit')}?id={$vo.id}">详情</a>
  30. </td>
  31. </tr>
  32. {/foreach}
  33. </tbody>
  34. </table>
  35. {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}
  36. </div>
  37. {/block}