query.blade.php 603 B

123456789101112131415161718
  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($filter_group as $row)
  5. <tr>
  6. <td>{{$row['name']}}
  7. </td>
  8. <td style="width:80px;"><a href="javascript:;" onclick='select_filter({{json_encode($row)}})'>选择</a></td>
  9. </tr>
  10. @endforeach
  11. @if(count($filter_group)<=0)
  12. <tr>
  13. <td colspan='4' align='center'>未找到标签组</td>
  14. </tr>
  15. @endif
  16. </tbody>
  17. </table>
  18. </div>