query.html 752 B

1234567891011121314151617
  1. <div style='max-height:500px;overflow:auto;min-width:850px;'>
  2. <table class="table table-hover" style="min-width:850px;">
  3. <tbody>
  4. <?php foreach( $ds as $row ){ ?>
  5. <tr>
  6. <td><img src='{:tomedia($row['thumb'])}' style='width:30px;height:30px;padding1px;border:1px solid #ccc' /> {$row['goodsname']}</td>
  7. <td style="width: 80px"><a class="text-primary" href="javascript:;" onclick='biz.selector.set(this, {:json_encode($row);})'>选择</a></td>
  8. </tr>
  9. <?php } ?>
  10. <?php if( count($ds)<=0){ ?>
  11. <tr>
  12. <td colspan='4' align='center'>未找到商品</td>
  13. </tr>
  14. <?php } ?>
  15. </tbody>
  16. </table>
  17. </div>