12345市长热线标准版-前端

email.html 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="../Script/Common/huayi.load.js"></script>
  6. <script src="../Script/Common/huayi.config.js"></script>
  7. <link rel="stylesheet" href="../css/init.css" />
  8. <title>邮件列表</title>
  9. <style>
  10. .treeTable {
  11. height: 400px;
  12. /*overflow-y: auto;*/
  13. }
  14. .content {
  15. width: 270px;
  16. height: 100%;
  17. overflow: hidden;
  18. white-space: nowrap;
  19. text-overflow: ellipsis;
  20. text-align: left;
  21. cursor: pointer;
  22. }
  23. .mytable {
  24. table-layout: fixed;
  25. }
  26. .mytable tbody tr td {
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. white-space: nowrap;
  30. }
  31. /*弹出框*/
  32. .emailDetail {
  33. width: 100%;
  34. border: 1px solid #e5e5e5;
  35. text-align: center;
  36. padding: 15px;
  37. }
  38. .emailDetail .con_title {
  39. font-weight: bold;
  40. color: #000;
  41. }
  42. .emailDetail .con_message {
  43. border-bottom: 1px solid #e5e5e5;
  44. padding: 5px;
  45. margin-bottom: 15px;
  46. }
  47. .emailDetail .con_content {
  48. text-align: left;
  49. text-indent: 2em;
  50. }
  51. .auditing,.addEmail{
  52. display: none;
  53. }
  54. </style>
  55. </head>
  56. <body class="gray-bg">
  57. <div class="container-fluid wrapper-content animated fadeInRight">
  58. <div class="daoHang clearfix">
  59. <div class="dhLeft">
  60. <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>&gt;<a href="javaScript:;">网站后台</a>&gt;<a href="" class="nowPosition">邮件列表</a></sapn>
  61. </div>
  62. <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
  63. </div>
  64. <div class="treeTable clearfix">
  65. <div class="tableCon">
  66. <table id="tableEmail" class="mytable table-bordered" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  67. <thead>
  68. <tr>
  69. <th data-field="state" data-checkbox="true" data-align="center"></th>
  70. <th data-align="center" data-formatter="setCode" data-width="6%">编号</th>
  71. <th data-field="E_Title" data-align="center" data-width="20%">主题</th>
  72. <th data-field="E_Content" align="left" data-width="30%">内容</th>
  73. <th data-field="E_Address" data-align="center" data-width="14%">邮件地址</th>
  74. <th data-field="E_EmailTime" data-align="center" data-width="14%">时间</th>
  75. <th data-field="E_Email" data-align="center" data-width="10%">发件人</th>
  76. <!--<th data-field="E_AttachmentsUrl" data-align="center">附件</th>-->
  77. <th data-align="center" data-formatter="emailDetail" data-width="6%">操作</th>
  78. <!--data-field="W_Url"-->
  79. </tr>
  80. </thead>
  81. <tbody id="tbody"></tbody>
  82. </table>
  83. <p style="margin-top: 20px;"><button class="btns allDel">批量删除</button></p>
  84. </div>
  85. </div>
  86. </div>
  87. <script src="../js/email.js"></script>
  88. </body>
  89. </html>