sms_pay_history.tpl.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. include $this->admin_tpl('header', 'admin');
  4. ?>
  5. <form name="myform" action="?m=admin&c=position&a=listorder" method="post">
  6. <div class="pad_10">
  7. <div class="table-list">
  8. <table width="100%" cellspacing="0">
  9. <thead>
  10. <tr>
  11. <th width="5%" align="center"><?php echo L('id')?></th>
  12. <th width="10%"><?php echo L('mobile')?></th>
  13. <th width="5%"><?php echo L('id_code')?></th>
  14. <th ><?php echo L('msg')?></th>
  15. <th ><?php echo L('send_userid')?></th>
  16. <th ><?php echo L('return_id')?></th>
  17. <th ><?php echo L('status')?></th>
  18. <th><?php echo L('ip')?></th>
  19. <th><?php echo L('posttime')?></th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <?php
  24. if(is_array($paylist_arr)) foreach($paylist_arr as $info){
  25. ?>
  26. <tr>
  27. <td width="5%" align="center"><?php echo $info['id']?></td>
  28. <td width="10%" align="center"><?php echo $info['mobile']?></td>
  29. <td width="5%" align="center"><?php echo $info['id_code']?></td>
  30. <td align="left"><?php if(CHARSET=='gbk') {echo iconv('utf-8','gbk',$info['msg']);}else{ echo $info['msg'];}?></td>
  31. <td align="center"><?php echo $info['sms_uid']?></td>
  32. <td align="center"><?php echo CHARSET=="gbk" ? iconv('utf-8','gbk',$info['return_id']) : $info['return_id'];?></td>
  33. <td align="center"><?php echo sms_status($info['status']);?></td>
  34. <td align="center"><?php echo $info['ip']?></td>
  35. <td align="center"><?php echo format::date($info['posttime'],1)?></td>
  36. </tr>
  37. <?php
  38. }
  39. ?>
  40. </tbody>
  41. </table>
  42. <div class="btn"></div> </div>
  43. <div id="pages"> <?php echo $pages?></div>
  44. </div>
  45. </div>
  46. </form>
  47. </body>
  48. <a href="javascript:edit(<?php echo $v['siteid']?>, '<?php echo $v['name']?>')">
  49. </html>