username@email.com
2025-04-27 15eb82df2d6ec539e9d4245bfe08d531e8eb6379
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@using zhengcaioa.Models;
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <meta http-equiv="Cache-Control" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
    <meta name="renderer" content="webkit" />
    <title>@(@ViewBag.PageTitle + " - " + @SiteConfig.SiteName)</title>
    <meta name="keywords" content="@SiteConfig.Keywords" />
    <meta name="description" content="@SiteConfig.Description" />
    <meta name="author" content="@SiteConfig.Author" />
    <link rel="shortcut icon" href="@SiteConfig.ShortcutIcon" />
    <!--基础-->
    <link href="~/css/bootstrap.min.css" rel="stylesheet">
    <link href="~/css/font-awesome.min.css" rel="stylesheet">
    <link href="~/js/plugins/layer/skin/layer.css" rel="stylesheet">
    <link href="~/css/plugins/iCheck/custom.css" rel="stylesheet">
    <link href="~/css/style.min.css" rel="stylesheet">
    <link href="~/css/plugins/chosen/chosen.css" rel="stylesheet">
    <!-- Data Tables -->
    <link href="~/css/plugins/dataTables/dataTables.bootstrap.css" rel="stylesheet">
 
    <!-- jqgrid-->
    <link href="~/css/plugins/jqgrid/ui.jqgrid.css" rel="stylesheet">
    <link href="~/css/animate.min.css" rel="stylesheet">
    <link href="~/css/style.min.css" rel="stylesheet">
 
    <script src="~/js/jquery.min.js"></script>
    <script src="~/js/bootstrap.min.js"></script>
    <script src="~/js/plugins/jqgrid/i18n/grid.locale-cn.js"></script>
    <script src="~/js/plugins/jqgrid/jquery.jqGrid.min.js"></script>
    <script src="~/js/content.min.js?v=1.0.0"></script>
    <script src="~/js/plugins/layer/layer.js"></script>
    <script src="~/js/plugins/metisMenu/jquery.metisMenu.js" type="text/javascript"></script>
    <script language="javascript" src="~/js/plugins/chosen/chosen.jquery.js" type="text/javascript"></script>
    <script src="~/js/contabs.min.js" type="text/javascript"></script>
    <script src="~/js/common-layout.js" type="text/javascript"></script>
    <script src="~/js/plugins/iTexbox/itextbox.js"></script>
    <script language="javascript" src="~/js/plugins/iCheck/icheck.min.js" type="text/javascript"></script>
    <script src="~/js/plugins/dataTables/jquery.dataTables.js"></script>
    <script src="~/js/plugins/dataTables/dataTables.bootstrap.js"></script>
    <script language="javascript" src="~/js/common-layout.js" type="text/javascript"></script>
    <script src="~/js/plugins/toastr/toastr.min.js" type="text/javascript"></script>
    <script src="~/js/contabs.min.js"></script>
 
    <script src="~/js/plugins/bootstro/bootstro.js"></script>
    <link href="~/js/plugins/bootstro/bootstro.css" rel="stylesheet" />
    @RenderSection("headerStyle", false)
    <script type="text/javascript">
 
        function ShowBootstro() {
 
            if (questiontag == "") {
                ToShowBootstro(questiontag);
                return;
            }
 
            $.ajax({
                url: '/Sys/GuideInfo/GetDocVersion1Vist',
                type: 'POST',
                data: "{ 'gtype':'" + saveurl + "' }",
                contentType: "application/json;charset=utf-8",
                success: function (data) {
                    if (data != true) {
                        ToShowBootstro(questiontag);
                    }
 
                }
            });
 
 
 
        }
        function ToShowBootstro(bturl) {
            bootstro.start(".bootstro", {
                onComplete: function (params) {
                    toCloseBootstro(bturl);
                },
                onExit: function (params) {
                    toCloseBootstro(bturl);
                },
            });
        }
        function toCloseBootstro(bturl) {
            msg.suc("您可以再次通过【操作说明】按钮打开指引");
            if (bturl == "") {
                return;
            }
            $.ajax({
                url: '/Sys/GuideInfo/DocVersion1VistEnd',
                type: 'POST',
                data: "{ 'gtype':'" + bturl + "' }",
                contentType: "application/json;charset=utf-8",
                success: function (data) {
 
                }
            });
        }
 
    </script>
</head>
<body class="gray-bg">
    <div class="wrapper wrapper-content" style="padding-top:0px; padding-left:10px; padding-right:0px">
        @RenderBody()
    </div>
 
    @{
        Html.RenderPartial("_Layout_ToolBar");
    }
 
    @RenderSection("footerScripts", false)
 
</body>
</html>