人人商城

query.html 1.2KB

12345678910111213141516171819202122232425262728
  1. <div style='max-height:500px;overflow:auto;min-width:850px;'>
  2. <table class="table table-hover" style="min-width:850px;">
  3. <tbody>
  4. {loop $ds $row}
  5. <tr>
  6. <td><img src='{php echo tomedia($row['avatar'])}' style='width:30px;height:30px;padding1px;border:1px solid #ccc' /> {$row['nickname']}
  7. {if strexists($row['openid'],'sns_wa_')}
  8. <i class="icon icon-wxapp" title="小程序注册" style="color: #7586db;"></i>
  9. {/if}
  10. {if strexists($row['openid'],'wap_user_')||strexists($row['openid'],'sns_qq_')||strexists($row['openid'],'sns_wx_')}
  11. <i class="icon icon-mobile2"title="{if strexists($row['openid'],'wap_user_')}手机号注册{else}APP注册{/if}" style="color: #44abf7;"></i>
  12. {/if}
  13. </td>
  14. <td>{$row['realname']}
  15. </td>
  16. <td>{$row['mobile']}</td>
  17. <td style="width:80px;"><a href="javascript:;" onclick='biz.selector.set(this,{php echo json_encode($row);})'>选择</a></td>
  18. </tr>
  19. {/loop}
  20. {if count($ds)<=0}
  21. <tr>
  22. <td colspan='4' align='center'>未找到会员</td>
  23. </tr>
  24. {/if}
  25. </tbody>
  26. </table>
  27. </div>