123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>@ViewBag.Title</title>
- <meta charset="utf-8">
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <link href="~/Content/Scripts/plugins/layui-v2.8.18/layui/css/layui.css" rel="stylesheet" />
- <link href="~/Content/Style/font-awesome/ico-font/iconfont.css" rel="stylesheet" />
- <link href="~/Content/Style/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
- <link href="~/Content/Scripts/plugins/easyui/themes/metro/easyui.css" rel="stylesheet" />
- <script src="~/Content/Scripts/plugins/jquery-3.7.1/jquery-3.7.1.min.js"></script>
- <script src="~/Content/Scripts/plugins/layui-v2.8.18/layui/layui.js"></script>
- <script src="~/Content/Scripts/plugins/easyui/jquery.easyui.min.js"></script>
- <script src="~/Content/Scripts/plugins/easyui/easyui-lang-zh_CN.js"></script>
- <script src="~/Content/Scripts/CookieManage.js?v=1.22"></script>
- <script src="~/Content/Scripts/SysFrame/Zlsoft.UI-1.0.js?v=1.33"></script>
- <script src="~/Content/Scripts/zlpms.js?v=2.916"></script>
- <script type="text/javascript">
- //var index = top.ZLPMS.Loading2('页面加载中...');
- function _PageLoadingTip_Closes() {
- $("#PageLoadingTip").fadeOut("normal", function () {
- $(this).remove();
- });
- //top.ZLPMS.CloseWindow(index);
- }
- var _pageloding_pc;
- $.parser.onComplete = function () {
- if (_pageloding_pc)
- clearTimeout(_pageloding_pc);
- _pageloding_pc = setTimeout(_PageLoadingTip_Closes, 50);
- }
- </script>
- <style>
- ::-webkit-scrollbar {
- width: 5px;
- height: 10px;
- }
- ::-webkit-scrollbar-track-piece {
- background-color: rgba(0, 0, 0, 0.2);
- -webkit-border-radius: 6px;
- }
- ::-webkit-scrollbar-thumb:vertical {
- height: 6px;
- background-color: rgba(125, 125, 125, 0.7);
- -webkit-border-radius: 6px;
- }
- ::-webkit-scrollbar-thumb:horizontal {
- width: 5px;
- background-color: rgba(125, 125, 125, 0.7);
- -webkit-border-radius: 6px;
- }
- </style>
- </head>
- <body style="padding:3px;">
- <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>
- @RenderBody()
- </body>
- </html>
|