goods_query.blade.php 826 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($goods as $row)
  5. <tr>
  6. <td style="width:80px;">{{$row['id']}}</td>
  7. <td><img src='{{yz_tomedia($row['thumb'])}}'
  8. style='width:30px;height:30px;padding1px;border:1px solid #ccc'/> {{$row['title']}}
  9. </td>
  10. <td style="width:80px;"><input type="checkbox" good_id="{{$row['id']}}" good_name="{{$row['title']}}" href="javascript:;" class="good_checked" />选择</td>
  11. </tr>
  12. @endforeach
  13. @if(count($goods)<=0)
  14. <tr>
  15. <td colspan='4' align='center'>未找到商品</td>
  16. </tr>
  17. @endif
  18. </tbody>
  19. </table>
  20. </div>