123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="renderer" content="webkit"/><!-- 让360浏览器默认选择webkit内核 -->
- <meta http-equiv="Pragma" content="no-cache">
- <meta http-equiv="Cache-Control" content="no-cache">
- <meta http-equiv="Expires" CONTENT="0">
- <!-- 全局css -->
- <link rel="shortcut icon" href="/static/favicon.ico">
- <link href="/static/css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
- <link href="/static/css/font-awesome.css?v=4.4.0" rel="stylesheet">
- <link href="/static/css/plugins/chosen/chosen.css" rel="stylesheet">
- <link href="/static/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
- <link href="/static/css/plugins/validate/bootstrapValidator.min.css" rel="stylesheet">
- <link href="/static/css/style.css?v=4.1.0" rel="stylesheet">
- <link href="/static/css/_fstyle.css" rel="stylesheet">
- <link href="/static/css/plugins/iCheck/custom.css" rel="stylesheet">
- <link href="/static/css/plugins/webuploader/webuploader.css" rel="stylesheet">
- <link href="/static/css/plugins/ztree/zTreeStyle.css" rel="stylesheet">
- <link href="/static/css/plugins/bootstrap-treetable/bootstrap-treetable.css" rel="stylesheet"/>
- <link href="/static/js/plugins/webuiPopover/dist/jquery.webui-popover.min.css" rel="stylesheet">
- <link href="/static/js/plugins/viewer/viewer.min.css" rel="stylesheet">
- <link href="/static/css/lockScreen.css" rel="stylesheet">
- <link href="/static/css/plugins/toastr/toastr.css" rel="stylesheet">
- <link href="/static/css/plugins/bootstrap-table/bootstrap-table-jumpto.css" rel="stylesheet">
- <!-- <!– kendo ui –>-->
- <!-- <link href="/static/js/plugins/kendoui/styles/kendo.common.min.css" rel="stylesheet">-->
- <!-- <link href="/static/js/plugins/kendoui/styles/kendo.bootstrap.min.css" rel="stylesheet">-->
- <!-- 全局js -->
- <script src="/static/js/jquery.min.js?v=2.1.4"></script>
- <script src="/static/js/bootstrap.min.js?v=3.3.6"></script>
- <script src="/static/js/plugins/webuiPopover/dist/jquery.webui-popover.min.js"></script>
- <script src="/static/js/plugins/ztree/jquery.ztree.all.min.js"></script>
- <script src="/static/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
- <script src="/static/js/plugins/validate/bootstrapValidator.min.js"></script>
- <script src="/static/js/plugins/validate/zh_CN.js"></script>
- <script src="/static/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
- <script src="/static/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
- <script src="/static/js/plugins/bootstrap-treetable/bootstrap-treetable.js"></script>
- <script src="/static/js/plugins/layer/layer.js"></script>
- <script src="/static/js/plugins/chosen/chosen.jquery.js"></script>
- <script src="/static/js/plugins/iCheck/icheck.min.js"></script>
- <script src="/static/js/plugins/laydate/laydate.js"></script>
- <script src="/static/js/plugins/webuploader/webuploader.min.js"></script>
- <script src="/static/js/common/ajax-object.js"></script>
- <script src="/static/js/common/bootstrap-table-object.js"></script>
- <script src="/static/js/common/tree-table-object.js"></script>
- <script src="/static/js/common/web-upload-object.js"></script>
- <script src="/static/js/common/ztree-object.js"></script>
- <script type="text/javascript">
- document.write('<script src="/static/js/common/Feng.js?v=' + (new Date()).getTime() + '"><\/script>');
- document.write('<script src="/static/modular/common/config.js?v=' + (new Date()).getTime() + '"><\/script>');
- document.write('<script src="/static/modular/common/upload.js?v=' + (new Date()).getTime() + '"><\/script>');
- // document.write('<script src="/static/js/plugins/kendoui/js/kendo.all.min.js?v=' + (new Date()).getTime() + '"><\/script>');
- // document.write('<script src="/static/js/plugins/kendoui/js/messages/kendo.messages.zh-CN.min.js?v=' + (new Date()).getTime() + '"><\/script>');
- // document.write('<script src="/static/js/common/kendo-table-object.js?v=' + (new Date()).getTime() + '"><\/script>');
- </script>
- <script src="/static/js/plugins/viewer/viewer.min.js"></script>
- <script src="/static/js/plugins/viewer/viewer-jquery.min.js"></script>
- <script src="/static/js/bootstrap-treeview.js"></script>
- <script src="/static/js/plugins/toastr/toastr.js"></script>
- <script src="/static/js/plugins/resizable/bootstrap-table-resizable.min.js"></script>
- <script src="/static/js/plugins/resizable/jquery.resizableColumns.min.js"></script>
- <script src="/static/js/plugins/bootstrap-pageation/bootstrap-paginator.js"></script>
- <script src="/static/js/plugins/bootstrap-table/bootstrap-table-jumpto.js"></script>
- <style type="text/css">
- table {
- width: 100px;
- table-layout: fixed; /* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */
- }
- td {
- width: 100%;
- word-break: keep-all; /* 不换行 */
- white-space: nowrap; /* 不换行 */
- overflow: hidden; /* 内容超出宽度时隐藏超出部分的内容 */
- text-overflow: ellipsis; /* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用*/
- }
- .layui-layer-btn .layui-layer-btn1 {
- border-color: #009688;
- background-color: #009688;
- color: #fff;
- }
- #fileTable td {
- word-break: break-word;
- white-space: inherit;
- }
- /*.table-hover > tbody > tr:hover {*/
- /* background-color: #b1ffb2 !important; !*修改表格悬浮样式*!*/
- /*}*/
- .fixed-table-container tbody .selected td {
- background-color: #b1ffb2 !important; /*修改表格选中样式*/
- }
- /*网页统一边灰白色*/
- /*body{*/
- /* filter:grayscale(100%)!important;*/
- /* -webkit-filter:grayscale(100%)!important;*/
- /* -moz-filter:grayscale(100%)!important;*/
- /* -ms-filter:grayscale(100%)!important;*/
- /* -o-filter:grayscale(100%)!important;*/
- /* filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)!important;*/
- /* -webkit-filter:grayscale(1)!important;*/
- /*}*/
- </style>
- <script type="text/javascript">
- Feng.addCtx("");
- Feng.sessionTimeoutRegistry();
- </script>
- </head>
- <body class="gray-bg">
- <div class="wrapper wrapper-content">
- {block name="content"}{/block}
- </div>
- <script src="/static/js/content.js?v=1.0.0"></script>
- </body>
- </html>
|