wechatMessages-index.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>列表页面</title>
  5. <!--#include file="common/_header.html"-->
  6. <style>
  7. .table .center{
  8. text-align:center;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <nav class="breadcrumb">
  14. <i class="Hui-iconfont">&#xe67f;</i> 首页 <span class="c-gray en">&gt;</span> 列表
  15. <a class="btn btn-success radius r"
  16. style="line-height: 1.6em; margin-top: 3px"
  17. href="javascript:location.replace(location.href);" title="刷新">
  18. <i class="Hui-iconfont">&#xe68f;</i></a>
  19. </nav>
  20. <div class="page-container">
  21. <div class="text-c">
  22. <input type="text" class="input-text" style="width: 250px" placeholder="输入消息标题" id="selTitle">
  23. <button type="submit" class="btn btn-success" id="btnSearch">
  24. <i class="Hui-iconfont">&#xe665;</i> 查询
  25. </button>
  26. </div>
  27. <div class="cl pd-5 bg-1 bk-gray">
  28. <span class="l">
  29. <a href="javascript:batch_del();" class="btn btn-danger radius"><i class="Hui-iconfont">&#xe6e2;</i>批量删除</a>
  30. <a href="javascript:item_add();" class="btn btn-primary radius"><i class="Hui-iconfont">&#xe600;</i>添加</a>
  31. </span>
  32. </div>
  33. <div class="mt-20">
  34. <table id="grid1" class="table table-border table-bordered table-bg">
  35. <thead>
  36. <tr class="text-c">
  37. <th width="25"><input id="checkAll" type="checkbox" value=""></th>
  38. <th width="100">接收信息用户</th>
  39. <th width="100">消息标题</th>
  40. <th width="100">消息详情</th>
  41. <th width="100">创建人</th>
  42. <th width="100">创建时间</th>
  43. <th width="100">更新人</th>
  44. <th width="100">更新时间</th>
  45. <th width="100">操作</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. </tbody>
  50. </table>
  51. </div>
  52. </div>
  53. <!--_footer 作为公共模版分离出去-->
  54. <!--#include file="common/_footer.html"-->
  55. <!--/_footer 作为公共模版分离出去-->
  56. <!--请在下方写此页面业务相关的脚本-->
  57. <script type="text/javascript" src="lib/My97DatePicker/4.8/WdatePicker.js"></script>
  58. <script type="text/javascript" src="lib/datatables/1.10.0/jquery.dataTables.min.js"></script>
  59. <script type="text/javascript" src="lib/laypage/1.2/laypage.js"></script>
  60. <script id="rowTmpl" type="text/template">
  61. <a href="javascript:item_edit('{{id}}')" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont">&#xe6df;</i>编辑</a>
  62. <a href="javascript:item_del('{{id}}','{{name}}')" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont">&#xe6e2;</i>删除</a>
  63. </script>
  64. <script type="text/javascript" src="lib/laypage/1.2/laypage.js"></script>
  65. <script type="text/javascript" src="scripts/global.js"></script>
  66. <script type="text/javascript">
  67. var path = global_backend_url;
  68. </script>
  69. </body>
  70. </html>