_CloudMonitor.cshtml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>@ViewBag.Title</title>
  5. <meta charset="utf-8">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  9. <link href="~/Content/Scripts/plugins/layui-v2.8.18/layui/css/layui.css" rel="stylesheet" />
  10. <link href="~/Content/Style/font-awesome/ico-font/iconfont.css" rel="stylesheet" />
  11. <link href="~/Content/Style/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
  12. <link href="~/Content/Scripts/plugins/easyui/themes/metro/easyui.css" rel="stylesheet" />
  13. <script src="~/Content/Scripts/plugins/jquery-3.7.1/jquery-3.7.1.min.js"></script>
  14. <script src="~/Content/Scripts/plugins/layui-v2.8.18/layui/layui.js"></script>
  15. <script src="~/Content/Scripts/plugins/easyui/jquery.easyui.min.js"></script>
  16. <script src="~/Content/Scripts/plugins/easyui/easyui-lang-zh_CN.js"></script>
  17. <script src="~/Content/Scripts/CookieManage.js?v=1.22"></script>
  18. <script src="~/Content/Scripts/SysFrame/Zlsoft.UI-1.0.js?v=1.33"></script>
  19. <script src="~/Content/Scripts/zlpms.js?v=2.916"></script>
  20. <script type="text/javascript">
  21. //var index = top.ZLPMS.Loading2('页面加载中...');
  22. function _PageLoadingTip_Closes() {
  23. $("#PageLoadingTip").fadeOut("normal", function () {
  24. $(this).remove();
  25. });
  26. //top.ZLPMS.CloseWindow(index);
  27. }
  28. var _pageloding_pc;
  29. $.parser.onComplete = function () {
  30. if (_pageloding_pc)
  31. clearTimeout(_pageloding_pc);
  32. _pageloding_pc = setTimeout(_PageLoadingTip_Closes, 50);
  33. }
  34. </script>
  35. <style>
  36. ::-webkit-scrollbar {
  37. width: 5px;
  38. height: 10px;
  39. }
  40. ::-webkit-scrollbar-track-piece {
  41. background-color: rgba(0, 0, 0, 0.2);
  42. -webkit-border-radius: 6px;
  43. }
  44. ::-webkit-scrollbar-thumb:vertical {
  45. height: 6px;
  46. background-color: rgba(125, 125, 125, 0.7);
  47. -webkit-border-radius: 6px;
  48. }
  49. ::-webkit-scrollbar-thumb:horizontal {
  50. width: 5px;
  51. background-color: rgba(125, 125, 125, 0.7);
  52. -webkit-border-radius: 6px;
  53. }
  54. </style>
  55. </head>
  56. <body style="padding:3px;">
  57. <div id='PageLoadingTip' style='position: absolute; z-index:1000; top: 0px; left: 0px; width: 100%; height: 100%; background: #fff; text-align: center;'><h6 style='top:48%; position: relative; color:#808080;'>请稍候,正在加载中···</h6></div>
  58. @RenderBody()
  59. </body>
  60. </html>