jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <meta name="renderer" content="webkit">
    <title>@ViewBag.Title</title>
    <link href="~/js/Vue/element-ui/index.css" rel="stylesheet" />
    <link href="~/js/Vue/element-ui/custom.css" rel="stylesheet" />
    @RenderSection("head", required: false)
    <style type="text/css">
        [v-cloak] {
            display: none;
        }
 
        body {
            padding: 0px;
            margin: 2px;
        }
    </style>
</head>
<body>
    @RenderBody()
</body>
</html>
<script src="~/js/Vue/vue.js"></script>
<script src="~/js/Vue/element-ui/index.js"></script>
<script src="~/js/core/common.js"></script>
<script src="~/Scripts/jquery-1.8.2.js"></script>
@Html.Raw(HttpUtility.UrlDecode(Html.GetVueTemplate("~/Views/Shared/_InitVueTemplate.cshtml").ToString()))
<script src="~/Content/js/linq.js_ver2.2.0.2/linq.js"></script>
<script src="~/js/Vue/components/hh-vue-components.js"></script>
@RenderSection("scripts", required: false)
<script>
    $(document).ready(function () {
        var themeColor = wms.themeColor || "#3a93d4";
        document.documentElement.style.setProperty("--theme-color", themeColor);
    });
</script>