index_10.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  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'>提交人</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-center nowrap">操作</th>
  14. </tr>
  15. </thead>
  16. {/notempty}
  17. <tbody>
  18. {foreach $list as $key=>$vo}
  19. <tr>
  20. <td class='text-left nowrap'>
  21. <p>用户姓名:{$vo.approve_info_user.name|default='--'}</p>
  22. <p class="color-desc">手机号码:{$vo.approve_info_user.mobile|default="--"}</p>
  23. </td>
  24. <td class='text-left nowrap'><strong>{$get_approve_status_list[$vo.status]}</strong></td>
  25. <td class='text-left nowrap'>{$vo.create_at}</td>
  26. <td class='text-left nowrap'>{$vo.order_no}</td>
  27. <td class='text-left nowrap'>{$vo.apply_date}</td>
  28. <td class='text-left nowrap'>{$vo.reason}</td>
  29. <td class='text-left nowrap'>{$vo.desc}</td>
  30. <td class='text-center nowrap'>
  31. <a class="layui-btn layui-btn-xs" data-open="{:url('edit')}?id={$vo.id}">详 情</a>
  32. </td>
  33. </tr>
  34. {/foreach}
  35. </tbody>
  36. </table>
  37. {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}