OpenAuth.Net/OpenAuth.Mvc/Views/Shared/_BjuiLayout.cshtml
2016-07-08 11:28:38 +08:00

96 lines
5.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>OpenAuth.net 基于经典DDD框架的权限管理</title>
<meta name="Keywords" content="OpenAuth,DDD权限管理,yubaolee" />
<meta name="Description" content="OpenAuth,DDD权限管理,yubaolee" />
<!-- bootstrap - css -->
<link href="/Content/BJUI/themes/css/bootstrap.css" rel="stylesheet">
<!-- core - css -->
<link href="/Content/BJUI/themes/css/style.css" rel="stylesheet">
<link href="/Content/BJUI/themes/blue/core.css" id="bjui-link-theme" rel="stylesheet">
<!-- plug - css -->
<link href="/Content/kindeditor_4.1.10/themes/default/default.css" rel="stylesheet">
<link href="/Content/colorpicker/css/bootstrap-colorpicker.min.css" rel="stylesheet">
<link href="/Content/niceValidator/jquery.validator.css" rel="stylesheet">
<link href="/Content/bootstrapSelect/bootstrap-select.css" rel="stylesheet">
<link href="/Content/BJUI/themes/css/FA/css/font-awesome.min.css" rel="stylesheet">
<link href="/Content/styles/zTreeStyle/zTreeStyle.css" />
<!--[if lte IE 7]>
<link href="/Content/BJUI/themes/css/ie7.css" rel="stylesheet">
<![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lte IE 9]>
<script src="/Content/BJUI/other/html5shiv.min.js"></script>
<script src="/Content/BJUI/other/respond.min.js"></script>
<![endif]-->
<!-- jquery -->
<script src="/Content/BJUI/js/jquery-1.11.3.min.js"></script>
<script src="/Content/BJUI/js/jquery.cookie.js"></script>
<!--[if lte IE 9]>
<script src="/Content/BJUI/other/jquery.iframe-transport.js"></script>
<![endif]-->
<!-- BJUI.all 分模块压缩版 -->
<script src="/Content/BJUI/js/bjui-all.js"></script>
<!-- plugins -->
<!-- swfupload for uploadify && kindeditor -->
<script src="/Content/swfupload/swfupload.js"></script>
<!-- kindeditor -->
<script src="/Content/kindeditor_4.1.10/kindeditor-all.min.js"></script>
<script src="/Content/kindeditor_4.1.10/lang/zh_CN.js"></script>
<!-- colorpicker -->
<script src="/Content/colorpicker/js/bootstrap-colorpicker.min.js"></script>
<!-- ztree -->
<script src="/Content/ztree/jquery.ztree.all-3.5.js"></script>
<!-- nice validate -->
<script src="/Content/niceValidator/jquery.validator.js"></script>
<script src="/Content/niceValidator/jquery.validator.themes.js"></script>
<!-- bootstrap plugins -->
<script src="/Content/bootstrap.min.js"></script>
<script src="/Content/bootstrapSelect/bootstrap-select.min.js"></script>
<script src="/Content/bootstrapSelect/defaults-zh_CN.min.js"></script>
<!-- icheck -->
<script src="/Content/icheck/icheck.min.js"></script>
<!-- dragsort -->
<script src="/Content/dragsort/jquery.dragsort-0.5.1.min.js"></script>
<!-- other plugins -->
<script src="/Content/other/jquery.autosize.js"></script>
<link href="/Content/uploadify/css/uploadify.css" rel="stylesheet">
<script src="/Content/uploadify/scripts/jquery.uploadify.min.js"></script>
<script src="/Content/download/jquery.fileDownload.js"></script>
<!-- init -->
<script type="text/javascript">
$(function () {
BJUI.init({
JSPATH: 'BJUI/', //[可选]框架路径
loginInfo: { url: 'Login', title: '登录', width: 400, height: 200 }, // 会话超时后弹出登录对话框
statusCode: { ok: 200, error: 300, timeout: 301 }, //[可选]
ajaxTimeout: 50000, //[可选]全局Ajax请求超时时间(毫秒)
pageInfo: { total: 'total', pageCurrent: 'pageCurrent', pageSize: 'pageSize', orderField: 'orderField', orderDirection: 'orderDirection' }, //[可选]分页参数
alertMsg: { displayPosition: 'topcenter', displayMode: 'slide', alertTimeout: 3000 }, //[可选]信息提示的显示位置,显隐方式,及[info/correct]方式时自动关闭延时(毫秒)
keys: { statusCode: 'statusCode', message: 'message' }, //[可选]
ui: {
windowWidth: 0, //框架可视宽度0=100%宽,> 600为则居中显示
showSlidebar: true, //[可选]左侧导航栏锁定/隐藏
clientPaging: true, //[可选]是否在客户端响应分页及排序参数
overwriteHomeTab: false //[可选]当打开一个未定义id的navtab时是否可以覆盖主navtab(我的主页)
},
debug: true, // [可选]调试模式 [true|false默认false]
theme: 'sky' // 若有cookie['bjui_theme'],优先选择cookie['bjui_theme']。皮肤[五种皮肤:default, orange, purple, blue, red, green]
});
});
</script>
</head>
<body>
<!--[if lte IE 7]>
<div id="errorie"><div>您还在使用老掉牙的IE正常使用系统前请升级您的浏览器到 IE8以上版本 <a target="_blank" href="http://windows.microsoft.com/zh-cn/internet-explorer/ie-8-worldwide-languages">点击升级</a>&nbsp;&nbsp;强烈建议您更改换浏览器:<a href="http://down.tech.sina.com.cn/content/40975.html" target="_blank">谷歌 Chrome</a></div></div>
<![endif]-->
@RenderBody()
</body>
</html>