test
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
646 B

<div style='max-height:500px;overflow:auto;min-width:580px;'>
<table class="table table-hover" style="min-width:580px;">
<tbody>
{loop $ds $row}
<tr>
<td><img src='{$row['avatar']}' style='width:30px;height:30px;padding1px;border:1px solid #ccc' /> {$row['nickname']}</td>
<td style="width:80px;"><a href="javascript:;" data-dismiss="modal" onclick='select_member({php echo json_encode($row);});'>选择</a></td>
</tr>
{/loop}
{if count($ds)<=0}
<tr>
<td colspan='4' align='center'>未找到</td>
</tr>
{/if}
</tbody>
</table>
</div>