_MainLayoutPage.cshtml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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/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/SysFrame/common.css" rel="stylesheet" />
  13. <link href="~/Content/Scripts/plugins/easyui/themes/metro/easyui.css" rel="stylesheet" />
  14. <link href="~/Content/Style/CommonStyle.css" rel="stylesheet" />
  15. <script src="~/Content/Scripts/jquery.min.js"></script>
  16. <script src="~/Content/Scripts/plugins/layui/layui.js"></script>
  17. <script src="~/Content/Scripts/plugins/easyui/jquery.easyui.min.js"></script>
  18. <script src="~/Content/Scripts/plugins/easyui/easyui-lang-zh_CN.js"></script>
  19. <script src="~/Content/Scripts/CookieManage.js?v=1.22"></script>
  20. <script src="~/Content/Scripts/SysFrame/Zlsoft.UI-1.0.js?v=1.33"></script>
  21. <script src="~/Content/Scripts/zlpms.js?v=2.916"></script>
  22. <script type="text/javascript">
  23. //var index = top.ZLPMS.Loading2('页面加载中...');
  24. function _PageLoadingTip_Closes() {
  25. $("#PageLoadingTip").fadeOut("normal", function () {
  26. $(this).remove();
  27. });
  28. //top.ZLPMS.CloseWindow(index);
  29. }
  30. var _pageloding_pc;
  31. $.parser.onComplete = function () {
  32. if (_pageloding_pc)
  33. clearTimeout(_pageloding_pc);
  34. _pageloding_pc = setTimeout(_PageLoadingTip_Closes, 50);
  35. }
  36. </script>
  37. <style>
  38. ::-webkit-scrollbar {
  39. width: 5px;
  40. height: 10px;
  41. }
  42. ::-webkit-scrollbar-track-piece {
  43. background-color: rgba(0, 0, 0, 0.2);
  44. -webkit-border-radius: 6px;
  45. }
  46. ::-webkit-scrollbar-thumb:vertical {
  47. height: 6px;
  48. background-color: rgba(125, 125, 125, 0.7);
  49. -webkit-border-radius: 6px;
  50. }
  51. ::-webkit-scrollbar-thumb:horizontal {
  52. width: 5px;
  53. background-color: rgba(125, 125, 125, 0.7);
  54. -webkit-border-radius: 6px;
  55. }
  56. </style>
  57. </head>
  58. <body style="padding:3px;">
  59. <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>
  60. @RenderBody()
  61. </body>
  62. </html>