approve.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {block name="content"}
  2. <div class="think-box-shadow">
  3. <table class="layui-table margin-top-20" lay-skin="line">
  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. </tr>
  12. </thead>
  13. <tbody>
  14. {foreach $list as $key=>$vo}
  15. <tr>
  16. <td class='text-left nowrap'>{$vo.name}</td>
  17. <td class='text-left nowrap'>
  18. {eq name ='vo.status' value='0'}待审批{/eq}
  19. {eq name ='vo.status' value='1'}审批中{/eq}
  20. {eq name ='vo.status' value='2'}审批通过{/eq}
  21. {eq name ='vo.status' value='3'}审批拒绝{/eq}
  22. </td>
  23. <td class='text-left nowrap'>{$vo.approve_time|default='--}</td>
  24. <td class='text-left nowrap'>{$vo.remark|default='--}</td>
  25. <td class='text-left nowrap'>{$vo.time|default='--'}</td>
  26. </tr>
  27. {/foreach}
  28. </tbody>
  29. </table>
  30. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  31. </div>
  32. {/block}