12345市长热线标准版-前端

email.html 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. .cjr,.wid,.time{
  55. margin-right: 20px;
  56. }
  57. </style>
  58. </head>
  59. <body class="gray-bg">
  60. <div class="container-fluid wrapper-content animated fadeInRight">
  61. <div class="daoHang clearfix">
  62. <div class="dhLeft">
  63. <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>&gt;<a href="javaScript:;">网站后台</a>&gt;<a href="" class="nowPosition">邮件列表</a></sapn>
  64. </div>
  65. <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
  66. </div>
  67. <div class="treeTable clearfix">
  68. <div class="tableCon">
  69. <table id="tableEmail" class="mytable table-bordered" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  70. <thead>
  71. <tr>
  72. <th data-field="state" data-checkbox="true" data-align="center"></th>
  73. <th data-align="center" data-formatter="setCode" data-width="6%">编号</th>
  74. <th data-field="E_Title" data-align="center" data-width="20%">主题</th>
  75. <th data-field="E_Content" align="left" data-width="30%">内容</th>
  76. <th data-field="E_Address" data-align="center" data-width="14%">邮件地址</th>
  77. <th data-field="E_EmailTime" data-align="center" data-width="14%">时间</th>
  78. <th data-field="E_Email" data-align="center" data-width="10%">发件人</th>
  79. <!--<th data-field="E_AttachmentsUrl" data-align="center">附件</th>-->
  80. <th data-align="center" data-formatter="emailDetail" data-width="6%">操作</th>
  81. <!--data-field="W_Url"-->
  82. </tr>
  83. </thead>
  84. <tbody id="tbody"></tbody>
  85. </table>
  86. <p style="margin-top: 20px;"><button class="btns allDel">批量删除</button></p>
  87. </div>
  88. </div>
  89. </div>
  90. <script src="../js/email.js"></script>
  91. </body>
  92. </html>