- 注册时间
- 2016-1-13
- 最后登录
- 2024-9-5
- 阅读权限
- 10
- 积分
- 2021
- 精华
- 0
- 帖子
- 271
|
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title></title>
-
-
- <style>
- .custom-btn {
- background-color: #428bca !important; /* 按钮背景颜色 */
- color: white !important; /* 字体颜色 */
- font-size: 16px !important; /* 字体大小 */
- padding: 10px 20px !important; /* 内边距,控制按钮大小 */
- border-radius: 5px !important; /* 按钮圆角 */
- border: none !important; /* 去除按钮边框 */
- cursor: pointer !important; /* 鼠标悬停样式 */
- }
- .custom-btn:hover {
- background-color: rgb(0, 57, 100) !important; /* 鼠标悬停时的按钮背景颜色 */
- }
- .mini-panel-header {
- display: block !important;
- }
- </style>
- </head>
- <body>
- <div class="row" style="height: 100%;">
- <div class="row row-hd row-hd-responsive" style="height: 100%">
- <div class="col-md-12 col-hd-6">
- <div class="portlet box blue" style="height: 100%;">
- <div class="portlet-title">
- <div class="captiontools">
- <input class="mini-combobox" id="PowerMessage.types" onvaluechanged="OnTypesChange" style="width: 100px;">
- </div>
- <div class="tools">
- <input id="search_start" class="mini-datepicker" width="100">-<input id="search_end" class="mini-datepicker" width="100">
- <a class="mini-button blue lanentry" id="btn-search" onclick="onSearch"><i class="fa fa-search"></i>搜索</a>
- <div id="PowerMessage-Export" class="btn-group"></div>
- </div>
- </div>
- <div class="mini-fit" style="background: #FFF;">
- <div class="portlet-body" style="height: 100%; padding: 4px">
- <div id="PowerMessage" class="mini-datagrid" style="width: 100%; height: 100%;" idfield="Id" allowresize="true"
- pagesize="15" showpager="true" onbeforeload="OnBeforeLoad" onpreload="OnPreLoad" autoload="false">
- <div property="columns">
- <div type="indexcolumn" width="25"></div>
-
- <div name="Title" field="Title" width="150" class="lanentry">标题</div>
-
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="col-md-12 col-hd-6">
- <div class="portlet box blue" style="height: 100%;">
- <div class="portlet-title">
- <div class="captiontools">
-
- </div>
- <div class="tools">
- </div>
- </div>
-
- <div class="portlet-body" style="height: 100%;">
- <div id="hz_doc_DspAudit" class="mini-datagrid" style="width: 100%; height: 100%;" allowresize="true" allowcelledit="false"
- multiselect="true" allowcellselect="true" idfield="Id" >
- <div property="columns">
- <div type="checkcolumn"></div>
- <div type="indexcolumn">序号</div>
-
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- mini.parse();
-
- </script>
- </body>
- </html>
复制代码 |
|