19 lines
736 B
PHP
19 lines
736 B
PHP
<div style='max-height:500px;overflow:auto;min-width:850px;'>
|
|
<table class="table table-hover" style="min-width:850px;">
|
|
<tbody>
|
|
@foreach($hotel as $row)
|
|
<tr>
|
|
<td><img src='{{yz_tomedia($row['thumb'])}}'
|
|
style='width:30px;height:30px;padding:1px;border:1px solid #ccc'/> {{$row['hotel_name']}}
|
|
</td>
|
|
<td style="width:80px;"><a href="javascript:;" onclick='select_hotel({{json_encode($row)}})'>选择</a></td>
|
|
</tr>
|
|
@endforeach
|
|
@if(count($hotel)<=0)
|
|
<tr>
|
|
<td colspan='4' align='center'>未找到酒店</td>
|
|
</tr>
|
|
@endif
|
|
</tbody>
|
|
</table>
|
|
</div> |