online.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <include file="Public:header"/>
  2. <div id="main-content">
  3. <div id="top-alert" class="fixed alert alert-error" style="display: none;">
  4. <button class="close fixed" style="margin-top: 4px;">&times;</button>
  5. <div class="alert-content">警告内容</div>
  6. </div>
  7. <div id="main" class="main">
  8. <div class="main-title-h">
  9. <span class="h1-title">在线客服</span>
  10. </div>
  11. <div class="data-table table-striped">
  12. <form id="form" method="post" class="form-horizontal">
  13. <table class="">
  14. <thead>
  15. <tr>
  16. <th class="row-selected row-selected">
  17. <input class="check-all" type="checkbox"/>
  18. </th>
  19. <th class="">ID</th>
  20. <th class="">会员账号</th>
  21. <th class="">未回复记录</th>
  22. <th class="">操作</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <notempty name="list">
  27. <volist name="list" id="vo">
  28. <tr>
  29. <td>
  30. <input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/>
  31. </td>
  32. <td>{$vo.id}</td>
  33. <td>{$vo.username}</td>
  34. <td>{$vo.nor}</td>
  35. <td>
  36. <a class="btn btn-primary btn-xs" href="{:U('User/onlinelist')}?id={$vo.id}">查看详情</a>
  37. </td>
  38. </tr>
  39. </volist>
  40. <else/>
  41. <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
  42. </notempty>
  43. </tbody>
  44. </table>
  45. </form>
  46. <div class="page">
  47. <div>{$page}</div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <script type="text/javascript">
  53. //提交表单
  54. $('#submit').click(function () {
  55. $('#form').submit();
  56. });
  57. </script>
  58. <include file="Public:footer"/>
  59. <block name="script">
  60. <script type="text/javascript" charset="utf-8">
  61. //导航高亮
  62. highlight_subnav("{:U('User/online')}");
  63. </script>
  64. </block>