query_store.html 464 B

123456789101112131415
  1. <table class="table table-hover" style="min-width:850px;">
  2. <tbody>
  3. {loop $ds $row}
  4. <tr>
  5. <td>{$row['storename']}</td>
  6. <td style="width:80px;"><a href="javascript:;" onclick='select_store({php echo json_encode($row);})'>选择</a></td>
  7. </tr>
  8. {/loop}
  9. {if count($ds)<=0}
  10. <tr>
  11. <td colspan='2' align='center'>未找到门店</td>
  12. </tr>
  13. {/if}
  14. </tbody>
  15. </table>