index_10.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {include file='approve_info/index_search_10'}
  2. <table class="layui-table margin-top-10" lay-skin="line">
  3. {notempty name='list'}
  4. <thead>
  5. <tr>
  6. <th class='text-left nowrap'>申请ID</th>
  7. <th class='text-left nowrap'>提交人</th>
  8. <th class='text-left nowrap'>审批状态</th>
  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-center nowrap">操作</th>
  15. </tr>
  16. </thead>
  17. {/notempty}
  18. <tbody>
  19. {foreach $list as $key=>$vo}
  20. <tr>
  21. <td class='text-left nowrap'>{$vo.id}</td>
  22. <td class='text-left nowrap'>
  23. <p>用户姓名:{$vo.create_user.name|default='--'}</p>
  24. <p class="color-desc">手机号码:{$vo.create_user.mobile|default="--"}</p>
  25. </td>
  26. <td class='text-left nowrap'><strong>{$get_approve_status_list[$vo.status]}</strong></td>
  27. <td class='text-left nowrap'>{$vo.create_at}</td>
  28. <td class='text-left nowrap'>{$vo.order_no}</td>
  29. <td class='text-left nowrap'>{$vo.apply_date}</td>
  30. <td class='text-left nowrap'>{$vo.desc}</td>
  31. <td class='text-left nowrap'>{$vo.reason}</td>
  32. <td class='text-center nowrap'>
  33. <a class="layui-btn layui-btn-xs layui-bg-blue" data-open="{:url('approve_info_log/index')}?info_id={$vo.id}">审批人修改记录</a>
  34. <a class="layui-btn layui-btn-xs" data-open="{:url('edit')}?id={$vo.id}">详 情</a>
  35. </td>
  36. </tr>
  37. {/foreach}
  38. </tbody>
  39. </table>
  40. {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}