package-deliver-query.blade.php 892 B

12345678910111213141516171819202122232425
  1. <div style='max-height:500px;overflow:auto;min-width:850px;'>
  2. <table class="table table-hover" style="min-width:850px;">
  3. <tbody>
  4. <tr>
  5. <td>ID</td>
  6. <td>自提点</td>
  7. <td>操作</td>
  8. </tr>
  9. @foreach($list as $row)
  10. <tr>
  11. <td>{{$row['id']}}</td>
  12. <td>{{$row['deliver_name']}}</td>
  13. <td style="width:80px;" >
  14. <a href="javascript:;" id="selectRow" value="{{$row['id']}}" onclick='select_package_deliver({{json_encode($row)}})'><div onmouseenter='selectOver(this,{{json_encode($row)}})'>选择</div></a>
  15. </td>
  16. </tr>
  17. @endforeach
  18. @if(count($list)<=0)
  19. <tr>
  20. <td colspan='4' align='center'>未找到自提点</td>
  21. </tr>
  22. @endif
  23. </tbody>
  24. </table>
  25. </div>