index_3.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {include file='approve_info/index_search_3'}
  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-center nowrap">操作</th>
  13. </tr>
  14. </thead>
  15. {/notempty}
  16. <tbody>
  17. {foreach $list as $key=>$vo}
  18. <tr>
  19. <td class='text-left nowrap'>{$vo.id}</td>
  20. <td class='text-left nowrap'>
  21. <p>用户姓名:{$vo.create_user.name|default='--'}</p>
  22. <p class="color-desc">手机号码:{$vo.create_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-center nowrap'>
  29. <a class="layui-btn layui-btn-xs layui-bg-blue" data-open="{:url('approve_info_log/index')}?info_id={$vo.id}">审批人修改记录</a>
  30. <a class="layui-btn layui-btn-xs" data-open="{:url('edit')}?id={$vo.id}">详 情</a>
  31. </td>
  32. </tr>
  33. {/foreach}
  34. </tbody>
  35. </table>
  36. {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}