querySort.blade.php 646 B

1234567891011121314151617181920
  1. <div style='max-height:500px;overflow:auto;min-width:850px;'>
  2. <table class="table table-hover" style="min-width:850px;">
  3. <tbody>
  4. @foreach($stores_sort as $row)
  5. <tr>
  6. <td>{{$row['name']}}</td>
  7. <td style="width:80px;">
  8. <a href="javascript:;" onclick='select_store_sort({{json_encode($row)}})'>选择</a>
  9. </td>
  10. </tr>
  11. @endforeach
  12. @if (count($stores_sort) <= 0)
  13. <tr>
  14. <td colspan='4' align='center'>未找到门店分类</td>
  15. </tr>
  16. @endif
  17. </tbody>
  18. </table>
  19. </div>