123456789101112131415161718 |
- <div style='max-height:500px;overflow:auto;min-width:850px;'>
- <table class="table table-hover" style="min-width:850px;">
- <tbody>
- <?php foreach( $ds as $row ){ ?>
- <tr>
- <td>{$row['name']}</td>
- <td style="width:80px;"><a href="javascript:;" onclick='biz.selector.set(this, {:json_encode($row);})'>选择</a></td>
- </tr>
- <?php } ?>
- <?php if( count($ds)<=0){ ?>
- <tr>
- <td colspan='4' align='center'>未找到分组</td>
- </tr>
- <?php } ?>
- </tbody>
- </table>
- </div>
- <!--NDAwMDA5NzgyNw==-->
|