dividend_goods_query.blade.php 693 B

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