index_8.html 1.9 KB

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