coupon_query.blade.php 650 B

12345678910111213141516171819202122
  1. <div style='max-height:500px;overflow:auto;'>
  2. <table class="table table-hover">
  3. <tbody>
  4. @if (is_array($coupon))
  5. @foreach($coupon as $row)
  6. <tr>
  7. <td style="width: 50%;">{{$row['name']}}</td>
  8. <td style="width: 50%;text-align: right;">
  9. <a href="javascript:;" onclick='select_coupon({{json_encode($row)}})'>选择</a>
  10. </td>
  11. </tr>
  12. @endforeach
  13. @endif
  14. @if (count($coupon) <= 0)
  15. <tr>
  16. <td colspan='4' align='center'>未找到数据</td>
  17. </tr>
  18. @endif
  19. </tbody>
  20. </table>
  21. </div>