| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <title>邮件列表</title>
- <style>
- .treeTable {
- height: 400px;
- /*overflow-y: auto;*/
- }
- .content {
- width: 270px;
- height: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: left;
- cursor: pointer;
- }
-
- .mytable {
- table-layout: fixed;
- }
- .mytable tbody tr td {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- /*弹出框*/
-
- .emailDetail {
- width: 100%;
- border: 1px solid #e5e5e5;
- text-align: center;
- padding: 15px;
- }
-
- .emailDetail .con_title {
- font-weight: bold;
- color: #000;
- }
-
- .emailDetail .con_message {
- border-bottom: 1px solid #e5e5e5;
- padding: 5px;
- margin-bottom: 15px;
- }
- .emailDetail .con_content {
- text-align: left;
- text-indent: 2em;
- }
- .auditing,.addEmail{
- display: none;
- }
- .cjr,.wid,.time{
- margin-right: 20px;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="container-fluid wrapper-content animated fadeInRight">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>><a href="javaScript:;">网站后台</a>><a href="" class="nowPosition">邮件列表</a></sapn>
- </div>
- <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
- </div>
- <div class="treeTable clearfix">
- <div class="tableCon">
- <table id="tableEmail" class="mytable table-bordered" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="state" data-checkbox="true" data-align="center"></th>
- <th data-align="center" data-formatter="setCode" data-width="6%">编号</th>
- <th data-field="E_Title" data-align="center" data-width="20%">主题</th>
- <th data-field="E_Content" align="left" data-width="30%">内容</th>
- <th data-field="E_Address" data-align="center" data-width="14%">邮件地址</th>
- <th data-field="E_EmailTime" data-align="center" data-width="14%">时间</th>
- <th data-field="E_Email" data-align="center" data-width="10%">发件人</th>
- <!--<th data-field="E_AttachmentsUrl" data-align="center">附件</th>-->
- <th data-align="center" data-formatter="emailDetail" data-width="6%">操作</th>
- <!--data-field="W_Url"-->
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- <p style="margin-top: 20px;"><button class="btns allDel">批量删除</button></p>
- </div>
- </div>
- </div>
- <script src="../js/email.js"></script>
- </body>
- </html>
|