| 12345678910111213141516171819202122 |
- <div style='max-height:500px;overflow:auto;'>
- <table class="table table-hover">
- <tbody>
- @if (is_array($coupon))
- @foreach($coupon as $row)
- <tr>
- <td style="width: 50%;">{{$row['name']}}</td>
- <td style="width: 50%;text-align: right;">
- <a href="javascript:;" onclick='select_coupon({{json_encode($row)}})'>选择</a>
- </td>
- </tr>
- @endforeach
- @endif
- @if (count($coupon) <= 0)
- <tr>
- <td colspan='4' align='center'>未找到数据</td>
- </tr>
- @endif
- </tbody>
- </table>
- </div>
|