didquery.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <{include file='../public/admin_header.html'}>
  2. <{include file='../public/admin_navi.html'}>
  3. <!-- Right side column. Contains the navbar and content of the page -->
  4. <aside class="right-side">
  5. <!-- Content Header (Page header) -->
  6. <section class="content-header">
  7. <h1>
  8. 客户回执记录查询
  9. <small>Control panel</small>
  10. </h1>
  11. <ol class="breadcrumb">
  12. <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  13. <li class="active">Blank page</li>
  14. </ol>
  15. </section>
  16. <!-- Main content -->
  17. <section class="content">
  18. <div class="span9">
  19. <div id='main' class="form-actions">
  20. <form method="post" action="/?a=send_sms_admin&m=didquery" >
  21. <div style="margin-left:20px;float:left;margin-bottom:20px;margin-right:20px;">
  22. 手机号码:<input type="text" name="tel" value="<{$tel}>" style="width:200px;">
  23. </div>
  24. <div style="clear:both;margin-left:20px;">
  25. <input type="submit" class="btn btn-info" value="查询" style="clear:both;height: 30px; width: 260px; "/>
  26. </div>
  27. </form>
  28. <div style="height:20px;"></div>
  29. <table class="table table-striped" style="margin-top:15px;">
  30. <tr>
  31. <th>ID</th>
  32. <th>站点</th>
  33. <th>发送人</th>
  34. <th>接收人</th>
  35. <th >发送内容</th>
  36. <th>发送时间</th>
  37. <th>状态</th>
  38. </tr>
  39. <{foreach from=$list item=item}>
  40. <tr>
  41. <td><{$item.id}></td>
  42. <td><{$item.uname}></td>
  43. <td><{$item.from_phone}></td>
  44. <td><{$item.did_mobile}></td>
  45. <td><{$item.content}></td>
  46. <td><{$item.receive_time}></td>
  47. <td <{if $item.status==2}>style="color:red;"<{/if}>
  48. <{if $item.status==3}>style="color:green;"<{/if}>><{$status_array[$item.status]}></td>
  49. </tr>
  50. <{/foreach}>
  51. </table>
  52. <{$show}>
  53. </div>
  54. </div>
  55. </section><!-- /.content -->
  56. </aside><!-- /.right-side -->
  57. </div><!-- ./wrapper -->
  58. <style>
  59. select{height:30px;}
  60. </style>
  61. <script>
  62. $('#treeview11').addClass('active');
  63. $(".send_sms_admin").addClass('active');
  64. </script>
  65. </body>
  66. </html>