1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <title>列表页面</title>
- <!--#include file="common/_header.html"-->
- <style>
- .table .center{
- text-align:center;
- }
- </style>
- </head>
- <body>
- <nav class="breadcrumb">
- <i class="Hui-iconfont"></i> 首页 <span class="c-gray en">></span> 列表
- <a class="btn btn-success radius r"
- style="line-height: 1.6em; margin-top: 3px"
- href="javascript:location.replace(location.href);" title="刷新">
- <i class="Hui-iconfont"></i></a>
- </nav>
- <div class="page-container">
- <div class="text-c">
- <input type="text" class="input-text" style="width: 250px" placeholder="输入消息标题" id="selTitle">
- <button type="submit" class="btn btn-success" id="btnSearch">
- <i class="Hui-iconfont"></i> 查询
- </button>
- </div>
- <div class="cl pd-5 bg-1 bk-gray">
- <span class="l">
- <a href="javascript:batch_del();" class="btn btn-danger radius"><i class="Hui-iconfont"></i>批量删除</a>
- <a href="javascript:item_add();" class="btn btn-primary radius"><i class="Hui-iconfont"></i>添加</a>
- </span>
- </div>
- <div class="mt-20">
- <table id="grid1" class="table table-border table-bordered table-bg">
- <thead>
- <tr class="text-c">
- <th width="25"><input id="checkAll" type="checkbox" value=""></th>
- <th width="100">接收信息用户</th>
- <th width="100">消息标题</th>
- <th width="100">消息详情</th>
- <th width="100">创建人</th>
- <th width="100">创建时间</th>
- <th width="100">更新人</th>
- <th width="100">更新时间</th>
- <th width="100">操作</th>
- </tr>
- </thead>
- <tbody>
- </tbody>
- </table>
- </div>
- </div>
- <!--_footer 作为公共模版分离出去-->
- <!--#include file="common/_footer.html"-->
- <!--/_footer 作为公共模版分离出去-->
- <!--请在下方写此页面业务相关的脚本-->
- <script type="text/javascript" src="lib/My97DatePicker/4.8/WdatePicker.js"></script>
- <script type="text/javascript" src="lib/datatables/1.10.0/jquery.dataTables.min.js"></script>
- <script type="text/javascript" src="lib/laypage/1.2/laypage.js"></script>
-
- <script id="rowTmpl" type="text/template">
- <a href="javascript:item_edit('{{id}}')" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont"></i>编辑</a>
- <a href="javascript:item_del('{{id}}','{{name}}')" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont"></i>删除</a>
- </script>
- <script type="text/javascript" src="lib/laypage/1.2/laypage.js"></script>
- <script type="text/javascript" src="scripts/global.js"></script>
- <script type="text/javascript">
- var path = global_backend_url;
-
- </script>
- </body>
- </html>
|