query.blade.php 815 B

12345678910111213141516171819
  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($goods as $row)
  5. <tr>
  6. <td><img src='{{yz_tomedia($row['thumb'])}}'
  7. style='width:30px;height:30px;padding1px;border:1px solid #ccc'/> {{$row['title']}}[ID:{{$row['id']}}]
  8. </td>
  9. <td style="width:80px;"><a href="javascript:;" onclick='@if ($exchange == 1) select_goods_exchange({{json_encode($row)}}) @else select_good({{json_encode($row)}}) @endif'>选择</a></td>
  10. </tr>
  11. @endforeach
  12. @if(count($goods)<=0)
  13. <tr>
  14. <td colspan='4' align='center'>未找到商品</td>
  15. </tr>
  16. @endif
  17. </tbody>
  18. </table>
  19. </div>