content.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="renderer" content="webkit"/><!-- 让360浏览器默认选择webkit内核 -->
  7. <meta http-equiv="Pragma" content="no-cache">
  8. <meta http-equiv="Cache-Control" content="no-cache">
  9. <meta http-equiv="Expires" CONTENT="0">
  10. <!-- 全局css -->
  11. <link rel="shortcut icon" href="/static/favicon.ico">
  12. <link href="/static/css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
  13. <link href="/static/css/font-awesome.css?v=4.4.0" rel="stylesheet">
  14. <link href="/static/css/plugins/chosen/chosen.css" rel="stylesheet">
  15. <link href="/static/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
  16. <link href="/static/css/plugins/validate/bootstrapValidator.min.css" rel="stylesheet">
  17. <link href="/static/css/style.css?v=4.1.0" rel="stylesheet">
  18. <link href="/static/css/_fstyle.css" rel="stylesheet">
  19. <link href="/static/css/plugins/iCheck/custom.css" rel="stylesheet">
  20. <link href="/static/css/plugins/webuploader/webuploader.css" rel="stylesheet">
  21. <link href="/static/css/plugins/ztree/zTreeStyle.css" rel="stylesheet">
  22. <link href="/static/css/plugins/bootstrap-treetable/bootstrap-treetable.css" rel="stylesheet"/>
  23. <link href="/static/js/plugins/webuiPopover/dist/jquery.webui-popover.min.css" rel="stylesheet">
  24. <link href="/static/js/plugins/viewer/viewer.min.css" rel="stylesheet">
  25. <link href="/static/css/lockScreen.css" rel="stylesheet">
  26. <link href="/static/css/plugins/toastr/toastr.css" rel="stylesheet">
  27. <link href="/static/css/plugins/bootstrap-table/bootstrap-table-jumpto.css" rel="stylesheet">
  28. <!-- &lt;!&ndash; kendo ui &ndash;&gt;-->
  29. <!-- <link href="/static/js/plugins/kendoui/styles/kendo.common.min.css" rel="stylesheet">-->
  30. <!-- <link href="/static/js/plugins/kendoui/styles/kendo.bootstrap.min.css" rel="stylesheet">-->
  31. <!-- 全局js -->
  32. <script src="/static/js/jquery.min.js?v=2.1.4"></script>
  33. <script src="/static/js/bootstrap.min.js?v=3.3.6"></script>
  34. <script src="/static/js/plugins/webuiPopover/dist/jquery.webui-popover.min.js"></script>
  35. <script src="/static/js/plugins/ztree/jquery.ztree.all.min.js"></script>
  36. <script src="/static/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
  37. <script src="/static/js/plugins/validate/bootstrapValidator.min.js"></script>
  38. <script src="/static/js/plugins/validate/zh_CN.js"></script>
  39. <script src="/static/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
  40. <script src="/static/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
  41. <script src="/static/js/plugins/bootstrap-treetable/bootstrap-treetable.js"></script>
  42. <script src="/static/js/plugins/layer/layer.js"></script>
  43. <script src="/static/js/plugins/chosen/chosen.jquery.js"></script>
  44. <script src="/static/js/plugins/iCheck/icheck.min.js"></script>
  45. <script src="/static/js/plugins/laydate/laydate.js"></script>
  46. <script src="/static/js/plugins/webuploader/webuploader.min.js"></script>
  47. <script src="/static/js/common/ajax-object.js"></script>
  48. <script src="/static/js/common/bootstrap-table-object.js"></script>
  49. <script src="/static/js/common/tree-table-object.js"></script>
  50. <script src="/static/js/common/web-upload-object.js"></script>
  51. <script src="/static/js/common/ztree-object.js"></script>
  52. <script type="text/javascript">
  53. document.write('<script src="/static/js/common/Feng.js?v=' + (new Date()).getTime() + '"><\/script>');
  54. document.write('<script src="/static/modular/common/config.js?v=' + (new Date()).getTime() + '"><\/script>');
  55. document.write('<script src="/static/modular/common/upload.js?v=' + (new Date()).getTime() + '"><\/script>');
  56. // document.write('<script src="/static/js/plugins/kendoui/js/kendo.all.min.js?v=' + (new Date()).getTime() + '"><\/script>');
  57. // document.write('<script src="/static/js/plugins/kendoui/js/messages/kendo.messages.zh-CN.min.js?v=' + (new Date()).getTime() + '"><\/script>');
  58. // document.write('<script src="/static/js/common/kendo-table-object.js?v=' + (new Date()).getTime() + '"><\/script>');
  59. </script>
  60. <script src="/static/js/plugins/viewer/viewer.min.js"></script>
  61. <script src="/static/js/plugins/viewer/viewer-jquery.min.js"></script>
  62. <script src="/static/js/bootstrap-treeview.js"></script>
  63. <script src="/static/js/plugins/toastr/toastr.js"></script>
  64. <script src="/static/js/plugins/resizable/bootstrap-table-resizable.min.js"></script>
  65. <script src="/static/js/plugins/resizable/jquery.resizableColumns.min.js"></script>
  66. <script src="/static/js/plugins/bootstrap-pageation/bootstrap-paginator.js"></script>
  67. <script src="/static/js/plugins/bootstrap-table/bootstrap-table-jumpto.js"></script>
  68. <style type="text/css">
  69. table {
  70. width: 100px;
  71. table-layout: fixed; /* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */
  72. }
  73. td {
  74. width: 100%;
  75. word-break: keep-all; /* 不换行 */
  76. white-space: nowrap; /* 不换行 */
  77. overflow: hidden; /* 内容超出宽度时隐藏超出部分的内容 */
  78. text-overflow: ellipsis; /* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用*/
  79. }
  80. .layui-layer-btn .layui-layer-btn1 {
  81. border-color: #009688;
  82. background-color: #009688;
  83. color: #fff;
  84. }
  85. #fileTable td {
  86. word-break: break-word;
  87. white-space: inherit;
  88. }
  89. /*.table-hover > tbody > tr:hover {*/
  90. /* background-color: #b1ffb2 !important; !*修改表格悬浮样式*!*/
  91. /*}*/
  92. .fixed-table-container tbody .selected td {
  93. background-color: #b1ffb2 !important; /*修改表格选中样式*/
  94. }
  95. /*网页统一边灰白色*/
  96. /*body{*/
  97. /* filter:grayscale(100%)!important;*/
  98. /* -webkit-filter:grayscale(100%)!important;*/
  99. /* -moz-filter:grayscale(100%)!important;*/
  100. /* -ms-filter:grayscale(100%)!important;*/
  101. /* -o-filter:grayscale(100%)!important;*/
  102. /* filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)!important;*/
  103. /* -webkit-filter:grayscale(1)!important;*/
  104. /*}*/
  105. </style>
  106. <script type="text/javascript">
  107. Feng.addCtx("");
  108. Feng.sessionTimeoutRegistry();
  109. </script>
  110. </head>
  111. <body class="gray-bg">
  112. <div class="wrapper wrapper-content">
  113. {block name="content"}{/block}
  114. </div>
  115. <script src="/static/js/content.js?v=1.0.0"></script>
  116. </body>
  117. </html>