@{
|
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>
|