didquery.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <!--<a href="/?a=sms_template_admin&m=add" style="font-weight:bold;text-decoration:underline;">添加短信模板</a>-->
  21. <div style="height:20px;"></div>
  22. <table class="table table-striped" style="margin-top:15px;">
  23. <tr>
  24. <th>ID</th>
  25. <th>站点</th>
  26. <th>发送人</th>
  27. <th>接收人</th>
  28. <th >发送内容</th>
  29. <th>发送时间</th>
  30. <th>状态</th>
  31. </tr>
  32. <{foreach from=$list item=item}>
  33. <tr>
  34. <td><{$item.id}></td>
  35. <td><{$item.uname}></td>
  36. <td><{$item.from_phone}></td>
  37. <td><{$item.did_mobile}></td>
  38. <td><{$item.content}></td>
  39. <td><{$item.receive_time}></td>
  40. <td <{if $item.status==2}>style="color:red;"<{/if}>
  41. <{if $item.status==3}>style="color:green;"<{/if}>><{$status_array[$item.status]}></td>
  42. </tr>
  43. <{/foreach}>
  44. </table>
  45. <{$show}>
  46. </div>
  47. </div>
  48. </section><!-- /.content -->
  49. </aside><!-- /.right-side -->
  50. </div><!-- ./wrapper -->
  51. <style>
  52. select{height:30px;}
  53. </style>
  54. <script>
  55. $('#treeview11').addClass('active');
  56. $(".send_sms_admin").addClass('active');
  57. </script>
  58. </body>
  59. </html>